forked from testing-library/nightwatch-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1016 Bytes
/
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
{
"name": "@nightwatch/testing-library",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "node nightwatch/build_commands.js",
"prepublishOnly": "npm run build",
"lint": "eslint nightwatch tests",
"test:nightwatch:serve": "serve --listen 13370 ./test-app",
"test": "nightwatch --serial --headless"
},
"files": [
"index.js",
"nightwatch",
"README.md"
],
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@testing-library/dom": "^7.0.4",
"simmerjs": "^0.5.6"
},
"devDependencies": {
"@nightwatch/apitesting": "^0.1.5",
"chromedriver": "^108.0.0",
"eslint": "^6.5.1",
"nightwatch": "2.6.4",
"serve": "^14.1.2",
"wait-on": "^7.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/nightwatch-testing-library.git"
},
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
}
}