/usr/lib/nodejs/reserved/package.json is in node-reserved 0.1.2+20140511-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 | {
"name": "reserved",
"description": "Reserved words that may not be used as variables, functions, methods, or object identifiers, since ECMAScript specifies special behavior for them.",
"version": "0.1.2",
"homepage": "https://github.com/jonschlinkert/reserved",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/reserved.git"
},
"bugs": {
"url": "https://github.com/jonschlinkert/reserved/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jonschlinkert/reserved/blob/master/LICENSE-MIT"
}
],
"keywords": [
"reserved",
"words",
"javascript",
"ECMAScript"
],
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha -R spec"
},
"devDependencies": {
"verb": "~0.2.0",
"chai": "~1.9.1",
"mocha": "~1.18.2"
}
}
|