-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 862 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 862 Bytes
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
{
"name": "websteps",
"version": "0.2.1",
"description": " End-to-end web testing on top of Chrome Debugging Protocol",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/larsthorup/node-websteps.git"
},
"keywords": [
"testing",
"end-to-end",
"acceptance",
"integration",
"chrome",
"chrome-debugging-protocol",
"cdp"
],
"author": "Lars Thorup <lars@zealake.com> (http://github.com/larsthorup)",
"license": "MIT",
"bugs": {
"url": "https://github.com/larsthorup/node-websteps/issues"
},
"homepage": "https://github.com/larsthorup/node-websteps#readme",
"dependencies": {
"chrome-remote-interface": "^0.32.2"
},
"files": [
"index.js"
],
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha"
}
}