-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 926 Bytes
/
package.json
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
{
"name": "protofree",
"version": "1.0.0",
"description": "Disable the __proto__ property for better security",
"main": "lib/index.js",
"engines": {
"node": ">=10.13"
},
"scripts": {
"test": "lab -f -t 100 -L",
"test-cov-html": "lab -f -r html -o coverage.html"
},
"keywords": [
"javascript",
"ecmascript",
"__proto__",
"security"
],
"author": "Gil Pedersen <[email protected]>",
"license": "BSD-2-Clause",
"devDependencies": {
"@hapi/code": "^7.0.0",
"@hapi/lab": "^21.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/*.js",
"apply.js",
"deprecate.js",
"partial.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kanongil/protofree.git"
},
"bugs": {
"url": "https://github.com/kanongil/protofree/issues"
},
"homepage": "https://github.com/kanongil/protofree#readme"
}