-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "chai-resemble",
"version": "2.0.1",
"author": "Giacomo Martino",
"description": "Chai helper for visually comparing HTML pages",
"license": "MIT",
"homepage": "https://github.com/giakki/chai-resemble",
"main": "src/index.js",
"scripts": {
"cover": "nyc npm run mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"mocha": "mocha --reporter spec --timeout 25000",
"test": "npm run lint && npm run mocha",
"travis": "npm run lint && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giakki/chai-resemble.git"
},
"bugs": {
"url": "https://github.com/giakki/chai-resemble/issues"
},
"keywords": [
"chai",
"css",
"gm",
"regression",
"resemble",
"testing"
],
"dependencies": {
"looks-same": "~7.2.3",
"make-dir": "^3.1.0",
"puppeteer": "^5.3.1",
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"chai": "~4.2.0",
"coveralls": "^3.1.0",
"eslint": "~7.10.0",
"eslint-config-prettier": "^6.12.0",
"mocha": "~8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2"
},
"files": [
"src/**/*",
"LICENSE"
],
"prettier": {
"endOfLine": "lf",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
}
}