forked from bbc/nightwatch-vrt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "@nightwatch/vrt",
"version": "3.5.2",
"description": "Nightwatch Visual Regression Testing tools",
"license": "MIT",
"homepage": "https://github.com/nightwatchjs/nightwatch-vrt",
"repository": {
"type": "git",
"url": "https://github.com/nightwatchjs/nightwatch-vrt.git"
},
"types": "index",
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint lib nightwatch",
"test:dev": "jest --watch --notify",
"test": "jest --coverage",
"clean": "rimraf node_modules package-lock.json reports",
"demo": "node demo/nightwatch.conf.js && run-p --race demo:start demo:nightwatch",
"demo:start": "http-server demo --silent",
"demo:nightwatch": "sleep 1 && npx nightwatch --config demo/nightwatch.conf.js --env chrome"
},
"jest": {
"roots": [
"lib",
"nightwatch",
"tests"
],
"testRegex": "-test\\.js$",
"coverageDirectory": "reports/coverage",
"coverageReporters": [
"text-summary",
"html"
]
},
"dependencies": {
"@nightwatch/html-reporter-template": "^0.3.0",
"jimp": "^0.16.0",
"lodash": "^4.17.4",
"open": "^8.4.2"
},
"devDependencies": {
"eslint": "^8.27.0",
"http-server": "^14.1.1",
"jest": "^28.1.0",
"nightwatch": "^3.4.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0"
}
}