-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1000 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
47
48
49
50
{
"name": "@test-runner/core",
"author": "Lloyd Brookes <[email protected]>",
"version": "0.10.0",
"description": "Minimal, extensible, isomorphic test runner.",
"repository": "https://github.com/test-runner-js/core",
"type": "module",
"exports": "./index.js",
"license": "MIT",
"keywords": [
"test",
"runner",
"minimal",
"simple",
"easy",
"tape",
"tap",
"ava",
"mocha"
],
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "node test/tests.js",
"docs": "jsdoc2md index.js > docs/API.md && jsdoc2md lib/view.js > docs/view.md"
},
"dependencies": {
"@test-runner/tom": "^0.9.0",
"fsm-base": "^0.7.0",
"work": "^0.10.0"
},
"devDependencies": {
"isomorphic-assert": "^1.0.0",
"jsdoc-to-markdown": "^7.0.1",
"node-fetch": "^3.0.0",
"sleep-anywhere": "^2.1.0"
},
"standard": {
"ignore": [
"tmp",
"dist"
]
},
"files": [
"lib",
"dist",
"index.js"
]
}