-
Notifications
You must be signed in to change notification settings - Fork 425
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "resemblejs",
"version": "5.0.0",
"description": "Image analysis and comparison with HTML5",
"main": "resemble.js",
"repository": {
"type": "git",
"url": "https://github.com/rsmbl/Resemble.js.git"
},
"keywords": [
"comparison",
"visual",
"image",
"diff",
"compare",
"html5"
],
"author": "James Cryer",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsmbl/Resemble.js/issues"
},
"homepage": "https://github.com/rsmbl/Resemble.js",
"scripts": {
"test": "jest nodejs-tests",
"test:coverage": "jest nodejs-tests --coverage",
"test:watch": "jest --watch nodejs-tests",
"test:debug": "node --inspect node_modules/jest/bin/jest --watch --runInBand nodejs-tests",
"lint": "eslint **/*.js --fix",
"lint-ci": "eslint -c ./.eslintrc --ignore-path ./.eslintignore **/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"optionalDependencies": {
"canvas": "2.11.2"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"jest": {
"testEnvironment": "node"
}
}