-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
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
{
"name": "image-diff-viewer",
"version": "1.5.1",
"main": "dist/src/index.js",
"description": "Reports how images have been changed",
"license": "MIT",
"bin": {
"image-diff-viewer": "./dist/src/cli.js"
},
"dependencies": {
"argv": "^0.0.2",
"glob": "^7.1.2",
"node-kmeans": "^1.1.8",
"pngjs": "^3.3.3",
"rimraf": "^2.6.3",
"wu-diff-js": "^0.1.7"
},
"devDependencies": {
"@types/argv": "0.0.4",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.3",
"@types/node": "^12.6.2",
"@types/puppeteer": "^1.3.4",
"@types/rimraf": "^2.0.2",
"mocha": "^6.1.4",
"puppeteer": "^1.18.1",
"source-map-support": "^0.5.12",
"typescript": "^3.5.3"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "npm run build",
"test": "mocha --require source-map-support/register ./dist/test/*.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"image diff screenshot"
],
"author": "Yosuke Torii <jinjorweb@gmail.com> (https://github.com/jinjor)",
"homepage": "https://github.com/jinjor/image-diff-viewer#readme",
"bugs": {
"url": "https://github.com/jinjor/image-diff-viewer/issues"
}
}