-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 860 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 860 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
39
40
41
42
{
"name": "web-runner",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "0.4.6",
"description": "web-runner",
"repository": "https://github.com/test-runner-js/web-runner",
"keywords": [],
"license": "MIT",
"bin": {
"web-runner": "./bin/cli.mjs"
},
"exports": "./index.mjs",
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "test-runner test/*.mjs"
},
"dependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"current-module-paths": "^1.1.0",
"lws": "^4.1.0",
"lws-static": "^3.1.0",
"puppeteer": "^10.2.0",
"rollup": "^2.56.2",
"test-runner": "^0.9.8"
},
"devDependencies": {
"@test-runner/tom": "^0.8.0"
},
"files": [
"index.mjs",
"bin",
"ui"
],
"standard": {
"ignore": [
"tmp"
]
}
}