/usr/lib/nodejs/diff/package.json is in node-diff 1.4.0~dfsg-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 | {
"name": "diff",
"version": "1.4.0",
"description": "A javascript text diff implementation.",
"keywords": [
"diff",
"javascript"
],
"maintainers": [
"Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)"
],
"bugs": {
"email": "kpdecker@gmail.com",
"url": "http://github.com/kpdecker/jsdiff/issues"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/kpdecker/jsdiff/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/kpdecker/jsdiff.git"
},
"engines": {
"node": ">=0.3.1"
},
"main": "./diff",
"scripts": {
"test": "istanbul cover node_modules/.bin/_mocha test/*.js && istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100 coverage/coverage.json"
},
"dependencies": {},
"devDependencies": {
"colors": "^1.1.0",
"istanbul": "^0.3.2",
"mocha": "^2.2.4",
"should": "^6.0.1"
},
"optionalDependencies": {},
"files": [
"diff.js"
]
}
|