forked from nightwatchjs/nightwatch-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "@nightwatch/nightwatch-inspector",
"version": "3.0.1",
"description": "Nightwatch Inspector that allows you to tests command directly from the browser",
"main": "index.js",
"scripts": {
"build": "node preprocessExtension.js",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"postinstall": "npm run build",
"eslint": "eslint index.js src --quiet",
"test": "npx nightwatch ./tests --env chrome --headless"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"node": true
},
"rules": {
"eqeqeq": "off",
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/nightwatch-selector-playground.git"
},
"keywords": [
"nightwatch",
"chrome",
"selector-playground",
"automation",
"nightwatch-inspector"
],
"author": "Harshit Agrawal",
"license": "MIT",
"bugs": {
"url": "https://github.com/nightwatchjs/nightwatch-selector-playground/issues"
},
"homepage": "https://github.com/nightwatchjs/nightwatch-selector-playground#readme",
"dependencies": {
"archiver": "^5.3.1"
},
"devDependencies": {
"eslint": "^8.9.0",
"http-server": "^14.1.1",
"nightwatch": "^3.7.0"
}
}