-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.28 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "test-runner",
"author": "Lloyd Brookes <[email protected]>",
"version": "0.11.1",
"description": "Fully-featured, lightweight command-line test runner",
"bin": {
"test-runner": "bin/cli.js"
},
"repository": "https://github.com/test-runner-js/test-runner",
"type": "module",
"exports": "./index.js",
"keywords": [
"test-runner",
"test",
"runner",
"cli",
"unit",
"testing",
"tool",
"tape",
"tap",
"ava",
"mocha"
],
"license": "MIT",
"engines": {
"node": ">=12.17"
},
"files": [
"bin",
"lib",
"index.js",
"dist"
],
"scripts": {
"test": "node test/tests.js",
"docs": "jsdoc2md index.js > docs/API.md"
},
"dependencies": {
"@test-runner/core": "^0.10.0",
"@test-runner/default-view": "^0.6.1",
"@test-runner/live-view": "^0.2.1",
"@test-runner/oneline-view": "^0.2.0",
"@test-runner/tom": "^0.9.1",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"current-module-paths": "^1.1.1",
"fast-glob": "^3.3.2",
"load-module": "^4.2.1",
"walk-back": "^5.1.0"
},
"devDependencies": {
"jsdoc-to-markdown": "^8.0.1",
"node-fetch": "^3.3.2"
},
"standard": {
"ignore": [
"dist",
"tmp"
],
"envs": []
}
}