-
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) · 851 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 851 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": "@test-runner/default-view",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "0.6.1",
"description": "Default view for test-runner",
"repository": "https://github.com/test-runner-js/default-view",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"test-runner",
"test-runner-view",
"view"
],
"license": "MIT",
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "npm run dist && node test.js",
"dist": "rollup -c"
},
"dependencies": {
"ansi-escape-sequences": "^6.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"@test-runner/tom": "^0.8.1",
"rollup": "^2.58.0"
},
"files": [
"index.js",
"dist"
],
"standard": {
"ignore": [
"dist"
]
}
}