forked from garris/BackstopJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "backstopjs",
"version": "3.8.2",
"description": "BackstopJS: Catch CSS curveballs.",
"bin": {
"backstop": "./cli/index.js"
},
"scripts": {
"lint": "eslint 'compare/*.js' 'compare/src/**/*.js' 'core/**/*.js' 'cli/**/*.js' 'capture/**/*.js' 'test/**/*.js'",
"format": "prettier-eslint --write \"compare/src/**/*.js\"",
"genConfig": "node ./cli/index.js genConfig",
"init": "node ./cli/index.js init",
"reference": "node ./cli/index.js reference",
"test": "node ./cli/index.js test",
"openReport": "node ./cli/index.js openReport",
"echo": "node ./cli/index.js echo",
"unit-test": "mocha --reporter spec --recursive 'test/**/*_spec.js'",
"precommit": "lint-staged",
"build-compare": "cp ./node_modules/diverged/src/diverged.js ./compare/output/; cp ./node_modules/diff/dist/diff.js ./compare/output/; webpack --config ./compare/webpack.config.js; npm run lint",
"dev-compare": "webpack-dev-server --content-base ./compare/output --config ./compare/webpack.config.js",
"integration-test": "rm -rf newdir && mkdir newdir && cd newdir && node ../cli/index.js genConfig && node ../cli/index.js reference && node ../cli/index.js test && node -e \"require('../')('test')\"",
"smoke-test": "cd test/configs/; node ../../cli/index.js test --config=backstop_features",
"sanity-test": "cd test/configs/; node ../../cli/index.js test",
"kill-zombies": "pkill -f \"(chrome)?(--headless)\"",
"copy-report-bundle": "cp compare/output/index_bundle.js test/configs/backstop_data/html_report/",
"build-and-copy-report-bundle": "npm run build-compare; npm run copy-report-bundle"
},
"lint-staged": {
"compare/src/**/*.js": [
"node_modules/.bin/prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/garris/backstopjs.git"
},
"author": "https://github.com/garris/BackstopJS/graphs/contributors",
"license": "MIT",
"main": "core/runner.js",
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"backstop-twentytwenty": "^1.0.4",
"eslint": "^5.6.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^2.0.0",
"lint-staged": "^4.3.0",
"mocha": "^5.2.0",
"mockery": "^1.4.0",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-modal": "^3.0.3",
"react-redux": "^5.0.6",
"react-sticky": "^6.0.1",
"react-toggle-button": "^2.1.0",
"react-visibility-sensor": "^3.11.1",
"redux": "^3.7.2",
"sinon": "^1.17.7",
"styled-components": "^2.1.2",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"casperjs": "^1.1.0-beta5",
"chalk": "^1.1.3",
"chromy": "0.5.11",
"diverged": "^0.1.2",
"fs-extra": "^0.30.0",
"jump.js": "^1.0.2",
"junit-report-builder": "^1.3.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"node-resemble-js": "^0.2.0",
"object-hash": "1.1.5",
"opn": "^5.3.0",
"os": "^0.1.1",
"p-map": "^1.1.1",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.16",
"portfinder": "^1.0.17",
"puppeteer": "^1.2.0-next.1523485686787",
"super-simple-web-server": "^1.1.0",
"temp": "^0.8.3"
}
}