This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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": "@bbc/nightwatch-vrt",
"version": "2.0.0",
"description": "Nightwatch Visual Regression Testing tools",
"license": "MIT",
"homepage": "https://github.com/bbc/nightwatch-vrt",
"repository": {
"type": "git",
"url": "https://github.com/bbc/nightwatch-vrt.git"
},
"types": "index",
"scripts": {
"lint": "eslint lib assertions commands",
"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 && nightwatch --config demo/nightwatch.conf.js --env phantomjs"
},
"jest": {
"roots": [
"lib",
"assertions",
"commands",
"tests"
],
"testRegex": "-test\\.js$",
"coverageDirectory": "reports/coverage",
"coverageReporters": [
"text-summary",
"html"
]
},
"dependencies": {
"jimp": "^0.16.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-crunch": "^1.8.0",
"eslint-plugin-react": "^7.30.0",
"http-server": "^14.1.0",
"jest": "^28.1.0",
"nightwatch": "^2.3.0",
"npm-run-all": "^4.1.5",
"phantomjs-prebuilt": "^2.1.15",
"rimraf": "^3.0.0",
"selenium-standalone": "^8.2.0"
}
}