forked from screener-io/screener-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "screener-storybook",
"version": "0.19.2",
"description": "Automated Visual Testing for React Storybook using Screener.io",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/screener-io/screener-storybook.git"
},
"bin": {
"screener-storybook": "./bin/screener-storybook.js"
},
"scripts": {
"test": "npm run lint && nyc mocha \"test/**/*.spec.js\" && npm run coverage",
"lint": "eslint .",
"coverage": "nyc check-coverage --statements 90 --functions 90 --branches 80 --lines 90"
},
"nyc": {
"include": [
"src/check.js",
"src/scripts/story-steps.js",
"src/runner.js",
"src/validate.js"
]
},
"engines": {
"node": ">= 6"
},
"license": "MIT",
"dependencies": {
"@types/react": "*",
"bluebird": "~3.4.6",
"colors": "~1.1.2",
"commander": "~2.9.0",
"get-port": "~4.2.0",
"joi": "~14.3.1",
"js-yaml": "^3.13.1",
"lodash": "~4.17.13",
"node-static": "~0.7.11",
"prop-types": "^15.6.0",
"puppeteer": "~1.17.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"request": "^2.87.0",
"requestretry": "^4.0.2",
"screener-runner": "~0.11.2",
"semver": "~5.6.0"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^4.18.2",
"mocha": "~5.2.0",
"nyc": "^14.1.1",
"rewire": "~2.5.2"
}
}