forked from rsmbl/Resemble.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "resemblejs",
"version": "3.1.0",
"description": "Image analysis and comparison with HTML5",
"main": "resemble.js",
"repository": {
"type": "git",
"url": "https://github.com/Huddle/Resemble.js.git"
},
"keywords": [
"comparison",
"visual",
"image",
"diff",
"compare",
"html5"
],
"author": "James Cryer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Huddle/Resemble.js/issues"
},
"homepage": "https://github.com/Huddle/Resemble.js",
"scripts": {
"test": "jest nodejs-tests",
"test:codacy-coverage": "jest nodejs-tests --coverage && cat ./coverage/lcov.info | codacy-coverage",
"test:watch": "jest --watch nodejs-tests",
"test:debug": "node --inspect node_modules/jest/bin/jest --watch --runInBand nodejs-tests",
"lint": "eslint **/*.js --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"canvas": "2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-es5": "^0.5.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"jest": {
"testEnvironment": "node"
}
}