-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "nightwatch-docker-grid",
"version": "1.0.0",
"description": "A dockerized Selenium grid for executing Selenium-driven Nightwatch.js tests against your dockerized web app",
"main": "",
"directories": {
"test": "tests"
},
"dependencies": {
"nightwatch": "^1.6.0"
},
"devDependencies": {
"dockerfilelint": "^1.8.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"scripts": {
"pretty": "prettier --ignore-path ./.gitignore \"*.+(yaml|yml|js|json|md)\"",
"format": "npm run pretty -- --write",
"format:check": "npm run pretty -- --list-different",
"lint": "npm run lint:dockerfile && npm run format:check",
"lint:dockerfile": "dockerfilelint Dockerfile",
"nightwatch": "nightwatch -e chrome,firefox",
"nightwatch-debug": "nightwatch -e chromeDebug,firefoxDebug",
"postinstall": "husky install",
"start": "bin/start",
"start:debug": "bin/start-debug",
"stop": "bin/stop",
"test": "bin/test",
"test:debug": "bin/test-debug",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mycargus/nightwatch-docker-grid.git"
},
"keywords": [
"docker",
"selenium",
"grid",
"nightwatch",
"javascript"
],
"author": "Michael Hargiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycargus/nightwatch-docker-grid/issues"
},
"homepage": "https://github.com/mycargus/nightwatch-docker-grid#readme",
"lint-staged": {
"Dockerfile": "npm run lint:dockerfile",
"*.{yaml|yml|js|json|md}": "npm run format"
}
}