-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
106 lines (106 loc) · 3.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "reg-cli",
"version": "0.18.8",
"description": "",
"main": "./dist/index.js",
"start": "node ./dist/cli.js",
"scripts": {
"watch": "babel src --watch -d dist",
"build": "npm run build:cli && npm run build:report",
"build:cli": "babel src -d dist",
"build:report": "sh ./scripts/build-ui.sh v0.4.0",
"flow": "flow",
"copy:ximgdiff": "copyfiles -u 3 node_modules/x-img-diff-js/build/cv-wasm_browser.* report/assets",
"prepublishOnly": "npm run build",
"reg": "node dist/cli.js ./sample/actual ./sample/expected ./sample/diff -I -R ./sample/index.html -T 0.01 -X client",
"reg:from": "node dist/cli.js -F ./sample/reg.json -R ./sample/index.html",
"screenshot": "node test/screenshot.js",
"test:cli": "chmod +x dist/cli.js && ava test/cli.test.mjs",
"test:screenshot": "npm run build:report && npm run reg && npm run screenshot",
"test": "export NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=\"debug\" npm run build:report && npm run build && npm run test:cli && npm run test:screenshot"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/reg-viz/reg-cli/"
},
"ava": {
"workerThreads": false
},
"author": "bokuweb",
"license": "MIT",
"resolutions": {
"**/set-value": "4.1.0",
"**/tar": "^6.0.0",
"**/kind-of": "^6.0.3",
"**/randomatic": "3.1.1",
"**/deep-extend": "0.6.0",
"**/cryptiles": "4.1.3",
"**/lodash": "4.17.21",
"**/yargs-parser": "^21.0.0",
"**/minimist": "^1.2.3",
"**/ajv": "^8.0.0",
"**/json-schema": "^0.4.0",
"**/hoek": "6.1.3",
"**/ansi-regex": "^5.0.1",
"**/glob-parent": "^6.0.1",
"**/dot-prop": "^9.0.0",
"**/node-forge": "^1.0.0",
"**/serialize-javascript": "^6.0.0",
"**/y18n": "^5.0.0",
"**/braces": "^3.0.0",
"**/trim-newlines": "^3.0.1",
"**/debug": "^4.3.4"
},
"dependencies": {
"bluebird": "3.7.2",
"chalk": "4.1.2",
"cli-spinner": "0.2.10",
"cross-spawn": "7.0.3",
"del": "6.1.1",
"glob": "7.2.3",
"img-diff-js": "0.5.4",
"jpeg-js": "^0.4.4",
"lodash": "4.17.21",
"make-dir": "3.1.0",
"md5-file": "4.0.0",
"meow": "^9.0.0",
"mustache": "4.2.0",
"x-img-diff-js": "0.3.5",
"xmlbuilder2": "^3.1.1",
"yargs-parser": "^21.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-block-scoping": "^7.23.4",
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-flow": "^7.23.3",
"@babel/preset-stage-2": "^7.8.3",
"ava": "6.1.3",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"finalhandler": "1.3.1",
"flow-bin": "0.77.0",
"flow-typed": "3.9.0",
"puppeteer": "13.7.0",
"rimraf": "3.0.2",
"serve-static": "1.16.2"
},
"files": [
"dist",
"template",
"report/ui/dist/report.js",
"report/ui/dist/worker.js",
"report/ui/dist/style.css",
"report/assets/favicon_failure.png",
"report/assets/favicon_success.png",
"report/sample"
],
"bin": {
"reg-cli": "./dist/cli.js"
}
}