/usr/lib/nodejs/tap-parser/package.json is in node-tap-parser 7.0.0+ds1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | {
"name": "tap-parser",
"version": "7.0.0",
"description": "parse the test anything protocol",
"main": "index.js",
"bin": {
"tap-parser": "bin/cmd.js"
},
"dependencies": {
"events-to-array": "^1.0.1",
"js-yaml": "^3.2.7"
},
"devDependencies": {
"glob": "^7.0.5",
"tap": "^10.3.3"
},
"scripts": {
"test": "tap test/*.js --100 -J",
"regen-fixtures": "node scripts/generate-test.js test/fixtures/*.tap",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --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/substack/tap-parser.git"
},
"homepage": "https://github.com/substack/tap-parser",
"keywords": [
"tap",
"test",
"parser"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT",
"optionalDependencies": {},
"files": [
"index.js",
"bin/cmd.js",
"bin/usage.txt"
]
}
|