forked from tapjs/tap-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.16 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
{
"name": "tap-parser",
"version": "10.0.1",
"description": "parse the test anything protocol",
"main": "index.js",
"bin": {
"tap-parser": "bin/cmd.js"
},
"dependencies": {
"events-to-array": "^1.0.1",
"minipass": "^3.0.0",
"tap-yaml": "^1.0.0"
},
"devDependencies": {
"glob": "^7.0.5",
"tap": "^14.4.1"
},
"scripts": {
"snap": "tap",
"test": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/10",
"chrome/latest",
"firefox/3.5",
"firefox/latest",
"opera/latest",
"safari/latest"
]
},
"repository": {
"type": "git",
"url": "git://github.com/tapjs/tap-parser.git"
},
"homepage": "https://github.com/tapjs/tap-parser",
"keywords": [
"tap",
"test",
"parser"
],
"license": "MIT",
"optionalDependencies": {},
"files": [
"index.js",
"bin/cmd.js"
],
"tap": {
"check-coverage": true
},
"nyc": {
"hookRunInThisContext": true
},
"engines": {
"node": ">= 8"
}
}