-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.2 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
{
"name": "chai-image-assert",
"version": "1.2.1",
"description": "Image comparison chai assert (uses ImageMagick).",
"main": "index.js",
"bin": {
"chai-image-assert-viewer": "./bin/launch-viewer"
},
"scripts": {
"test": "mocha --require babel-polyfill --compilers js:babel-register test/unit/*.spec.js",
"build": "rm -rf dist && babel ./lib --out-dir dist && npm run viewer-build",
"prepublish": "(in-publish && npm run build) || true",
"viewer-start": "cd viewer/frontend && react-scripts start",
"viewer-build": "mkdir -p ./dist && cd viewer/frontend && react-scripts build && mv ./build ../../dist/viewer",
"viewer-test": "cd viewer/frontend && react-scripts test --env=jsdom",
"viewer-eject": "cd viewer/frontend && react-scripts eject",
"viewer-test-e2e": "wdio wdio.conf.js",
"viewer-launch-test": "rm -rf ./test_resources/processed-screenshots && mkdir ./test_resources/processed-screenshots && cp ./test_resources/processed-screenshots-for-viewer/* ./test_resources/processed-screenshots && ./bin/launch-viewer ./test_resources"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diosmosis/chai-image-assert.git"
},
"keywords": [
"chai",
"imagemagick",
"image",
"comparison"
],
"author": "diosmosis",
"license": "MIT",
"bugs": {
"url": "https://github.com/diosmosis/chai-image-assert/issues"
},
"homepage": "https://github.com/diosmosis/chai-image-assert#readme",
"devDependencies": {
"axios": "^0.18.1",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"immutability-helper": "^2.3.1",
"in-publish": "^2.0.0",
"mocha": "^2.4.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.12",
"wdio-mocha-framework": "^0.5.11",
"wdio-screenshot": "^0.6.0",
"wdio-spec-reporter": "^0.1.2",
"webdriverio": "^4.8.0"
},
"dependencies": {
"fs-extra": "^4.0.1",
"koa": "^2.3.0",
"koa-bodyparser": "3",
"koa-mount": "2",
"koa-route": "^3.2.0",
"koa-static": "3",
"lodash": "^4.17.4",
"react-dev-utils": "^4.0.0"
}
}