-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 KB
/
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
44
45
46
47
48
49
50
{
"name": "walter-whitelist",
"version": "2.0.0",
"description": "Whitelist javascript objects",
"main": "src/index.js",
"scripts": {
"cover": "nyc --reporter=lcov npm test",
"codecov": "npm run cover && codecov",
"lint": "eslint src test",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperhive/walter-whitelist.git"
},
"keywords": [
"whitelist",
"sanitize",
"clean",
"strip",
"tidy",
"pick",
"authorize",
"redact",
"screen",
"objects",
"security",
"permission",
"authorization"
],
"author": "André Gaul <andre@gaul.io>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/paperhive/walter-whitelist/issues"
},
"homepage": "https://github.com/paperhive/walter-whitelist#readme",
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.1.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.0.0",
"nyc": "^12.0.1",
"should": "^13.0.0"
},
"dependencies": {
"co": "^4.6.0",
"lodash": "^4.0.0"
}
}