-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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": "chigai-cli",
"version": "1.4.1",
"description": "Chigai: modern visual regression testing. CLI module.",
"main": "./app/main.js",
"repository": {
"type": "git",
"url": "https://github.com/martinkr/chigai-api"
},
"homepage": "https://github.com/martinkr/chigai-api",
"issues": "https://github.com/martinkr/chigai-api/issues",
"author": "Martin Krause <[email protected]> (http://martinkr.github.io)",
"license": "MIT",
"engines": {
"node": ">=8.5.5"
},
"bin": {
"chigai": "./bin/chigai"
},
"keywords": [
"visual",
"regression",
"testing",
"ci",
"continious integration",
"bdd",
"tdd",
"mocha",
"chai",
"node",
"puppeteer",
"css regression",
"cli",
"bash"
],
"scripts": {
"start": "./bin/chigai",
"eslint": "./node_modules/.bin/eslint ./bin/**/*.js",
"mocha": "./node_modules/mocha/bin/mocha",
"test": "yarn eslint && yarn mocha"
},
"dependencies": {
"chigai-core": "^1.0.0",
"yargs": "^9.0.1"
},
"devDependencies": {
"chai": "4.1.1",
"chigai-mock-server": "^1.0.0",
"cross-spawn": "^5.1.0",
"eslint": "4.4.1",
"fs-extra-plus": "^0.1.3",
"mocha": "3.5.0",
"proxyquire": "^2.0.1",
"sinon": "^5.0.10",
"sinon-chai": "^3.1.0"
}
}