/usr/lib/nodejs/private/package.json is in node-private 0.1.8-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 | {
"author": {
"name": "Ben Newman",
"email": "bn@cs.stanford.edu"
},
"name": "private",
"description": "Utility for associating truly private state with any JavaScript object",
"keywords": [
"private",
"access control",
"access modifiers",
"encapsulation",
"secret",
"state",
"privilege",
"scope",
"es5"
],
"version": "0.1.8",
"homepage": "http://github.com/benjamn/private",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/private.git"
},
"license": "MIT",
"main": "private.js",
"files": [
"private.js"
],
"scripts": {
"test": "mocha --reporter spec --full-trace test/run.js"
},
"engines": {
"node": ">= 0.6"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}
|