UNPKG

1.28 kBJSONView Raw
1{
2 "name": "tap-parser",
3 "version": "7.0.0",
4 "description": "parse the test anything protocol",
5 "main": "index.js",
6 "bin": {
7 "tap-parser": "bin/cmd.js"
8 },
9 "dependencies": {
10 "events-to-array": "^1.0.1",
11 "js-yaml": "^3.2.7",
12 "minipass": "^2.2.0"
13 },
14 "devDependencies": {
15 "glob": "^7.0.5",
16 "tap": "^10.3.3"
17 },
18 "scripts": {
19 "test": "tap test/*.js --100 -J",
20 "regen-fixtures": "node scripts/generate-test.js test/fixtures/*.tap",
21 "preversion": "npm test",
22 "postversion": "npm publish",
23 "postpublish": "git push origin --all; git push origin --tags"
24 },
25 "testling": {
26 "files": "test/*.js",
27 "browsers": [
28 "ie/6..latest",
29 "chrome/10",
30 "chrome/latest",
31 "firefox/3.5",
32 "firefox/latest",
33 "opera/latest",
34 "safari/latest"
35 ]
36 },
37 "repository": {
38 "type": "git",
39 "url": "git://github.com/substack/tap-parser.git"
40 },
41 "homepage": "https://github.com/substack/tap-parser",
42 "keywords": [
43 "tap",
44 "test",
45 "parser"
46 ],
47 "author": {
48 "name": "James Halliday",
49 "email": "mail@substack.net",
50 "url": "http://substack.net"
51 },
52 "license": "MIT",
53 "optionalDependencies": {},
54 "files": [
55 "index.js",
56 "bin/cmd.js",
57 "bin/usage.txt"
58 ]
59}