-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "chigai-core",
"version": "1.5.3",
"description": "Chigai: modern visual regression testing. CORE module.",
"main": "./app/main.js",
"license": "MIT",
"engines": {
"node": ">=8.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/martinkr/chigai-core"
},
"homepage": "https://github.com/martinkr/chigai-core",
"issues": "https://github.com/martinkr/chigai-core/issues",
"author": "Martin Krause <[email protected]> (http://martinkr.github.io)",
"keywords": [
"visual",
"regression",
"testing",
"ci",
"continious integration",
"bdd",
"tdd",
"mocha",
"chai",
"node",
"puppeteer",
"css regression"
],
"scripts": {
"eslint": "./node_modules/.bin/eslint ./app/**/*.js",
"mocha": "./node_modules/mocha/bin/mocha",
"nyc": "./node_modules/.bin/nyc --clean ./node_modules/.bin/mocha --exit",
"coverage": "./node_modules/.bin/nyc check-coverage --lines 100 --functions 100 --branches 100 --statements 100",
"report": "./node_modules/.bin/nyc report --reporter=lcov --reporter=html",
"test": "yarn eslint && yarn nyc && yarn report && yarn coverage"
},
"dependencies": {
"blink-diff": "^1.0.13",
"fs-extra-plus": "^0.1.3",
"puppeteer": "^1.13.0"
},
"devDependencies": {
"chai": "4.1.1",
"chigai-mock-server": "^1.0.0",
"eslint": "4.18.2",
"image-size": "https://github.com/image-size/image-size",
"mocha": "5.0.3",
"nyc": "^13.2.0",
"proxyquire": "^1.8.0",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0"
}
}