-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 966 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
{
"name": "tap-reader",
"version": "0.2.1",
"author": "tbeseda",
"license": "Apache-2.0",
"description": "A smol, streaming TAP parser.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/tbeseda/tap-reader.git"
},
"main": "src/index.js",
"bin": {
"tap-reader": "src/index.js"
},
"files": [
"src/"
],
"scripts": {
"vendurl": "vendurl",
"lint": "biome ci",
"lint.fix": "biome check --write",
"start": "tape test/tap/make-tap.js | node examples/table-reporter.js",
"tape": "tape test/**/*-test.js",
"test": "npm run lint && npm run tape"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"cli-table3": "^0.6.5",
"tape": "^5.8.1",
"vendurl": "^0.3.0"
},
"vendurl": {
"destination": "src/vendor",
"packages": {
"yaml.js": "[email protected]?target=es2021"
}
},
"keywords": [
"tap",
"parser",
"testing",
"tape"
]
}