-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "brittle",
"version": "3.8.3",
"description": "A TAP test runner built for modern times",
"main": "index.js",
"bin": {
"brittle": "./cmd.js"
},
"author": "David Mark Clements (@davidmarkclem)",
"license": "Apache-2.0",
"scripts": {
"test": "standard && node test/all.mjs",
"test-bare": "bare test/bare-test.mjs"
},
"files": [
"index.js",
"cmd.js",
"lib/**.js"
],
"dependencies": {
"b4a": "^1.6.0",
"bare-cov": "^1.0.1",
"bare-subprocess": "^5.0.0",
"error-stack-parser": "^2.1.4",
"globbie": "^1.0.0",
"paparam": "^1.6.2",
"same-object": "^1.0.2",
"tmatch": "^5.0.0"
},
"devDependencies": {
"chalk": "^4.1.2",
"safety-catch": "^1.0.2",
"standard": "^17.0.0"
},
"imports": {
"child_process": {
"bare": "bare-subprocess"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/brittle.git"
},
"bugs": {
"url": "https://github.com/holepunchto/brittle/issues"
},
"homepage": "https://github.com/holepunchto/brittle#readme"
}