aswi2020vldc-gitlab/templetes/node_modules/private/package.json @ 0b434236
1 |
{
|
---|---|
2 |
"author": { |
3 |
"name": "Ben Newman", |
4 |
"email": "bn@cs.stanford.edu" |
5 |
}, |
6 |
"name": "private", |
7 |
"description": "Utility for associating truly private state with any JavaScript object", |
8 |
"keywords": [ |
9 |
"private", |
10 |
"access control", |
11 |
"access modifiers", |
12 |
"encapsulation", |
13 |
"secret", |
14 |
"state", |
15 |
"privilege", |
16 |
"scope", |
17 |
"es5" |
18 |
], |
19 |
"version": "0.1.8", |
20 |
"homepage": "http://github.com/benjamn/private", |
21 |
"repository": { |
22 |
"type": "git", |
23 |
"url": "git://github.com/benjamn/private.git" |
24 |
}, |
25 |
"license": "MIT", |
26 |
"main": "private.js", |
27 |
"files": [ |
28 |
"private.js" |
29 |
], |
30 |
"scripts": { |
31 |
"test": "mocha --reporter spec --full-trace test/run.js" |
32 |
}, |
33 |
"engines": { |
34 |
"node": ">= 0.6" |
35 |
}, |
36 |
"devDependencies": { |
37 |
"mocha": "^4.0.1" |
38 |
} |
39 |
}
|