-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "node-sec-patterns",
"description": "Allow projects control over which dependencies can create objects that encapsulate security guarantees.",
"version": "3.0.2",
"keywords": [
"design-patterns",
"security",
"suspicious",
"whitelist",
"sec-roadmap"
],
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"module-keys": "^2.0.2"
},
"scripts": {
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "./node_modules/.bin/standard && ./node_modules/.bin/eslint .",
"test": "mocha",
"prepack": "npm run lint && npm test"
},
"pre-commit": [
"prepack"
],
"author": "@mikesamuel",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mikesamuel/node-sec-patterns.git"
},
"bugs": {
"url": "https://github.com/mikesamuel/node-sec-patterns/issues"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-strict": "*",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"standard": "^11.0.1"
},
"eslintConfig": {
"extends": [
"strict",
"standard"
],
"rules": {
"complexity": [
"error",
{
"max": 11
}
],
"strict": "off",
"no-void": "off"
}
},
"eslintIgnore": [
"test/cases-babel-out"
],
"standard": {
"ignore": [
"test/cases-pp"
]
}
}