-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "nightwatch-vrt",
"version": "0.2.8",
"description": "Nightwatch Visual Regression Testing tools",
"license": "MIT",
"author": "Crunch.io <[email protected]>",
"contributors": [
{
"name": "Connor Schlesiger",
"email": "[email protected]"
},
{
"name": "Matt Steitle",
"email": "[email protected]"
}
],
"keywords": [
"selenium",
"selenium-webdriver",
"css-testing",
"nightwatchjs",
"e2e-tests",
"visual-regression-testing",
"nightwatch"
],
"homepage": "https://github.com/Crunch-io/nightwatch-vrt",
"repository": {
"type": "git",
"url": "git+https://github.com/Crunch-io/nightwatch-vrt.git"
},
"bugs": {
"url": "https://github.com/Crunch-io/nightwatch-vrt/issues"
},
"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.2.28",
"lodash": "^4.17.4"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-crunch": "^1.1.3",
"eslint-plugin-react": "^7.3.0",
"http-server": "^0.10.0",
"jest": "^20.0.4",
"nightwatch": "^1.0.14",
"npm-run-all": "^4.0.2",
"phantomjs-prebuilt": "^2.1.15",
"rimraf": "^2.6.1",
"selenium-standalone": "^6.7.0"
}
}