-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 930 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
{
"name": "boxtape",
"version": "0.0.16",
"license": "MIT",
"repository": "[email protected]:taylrun/boxtape.git",
"author": "Taylor Goolsby <[email protected]>",
"description": "A tape testing framework with defaults",
"keywords": [
"tape",
"testing",
"tap"
],
"bin": {
"boxtape": "./cli.js"
},
"main": "boxtape.js",
"types": "./boxtape.d.ts",
"exports": {
".": "./boxtape.js",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"cli.js",
"boxtape.js",
"boxtape.d.ts"
],
"scripts": {
"test": "node cli.js tests/main.test.js && echo 'pass'",
"test-fail": "node cli.js tests/fail.test.js && echo 'pass'",
"prepublishOnly": "npm run test"
},
"dependencies": {
"tap-pretty-with-errors": "^0.0.8",
"tape": "^5.6.4"
},
"devDependencies": {
"@types/tape": "^5.6.0",
"sinon": "^15.2.0"
}
}