-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "eslint-config-secure",
"version": "0.2.1",
"description": "A shareable ESLint config with code security plugins",
"main": "index.js",
"scripts": {
"checkall": "npm run snyk && npm run nsp && npm run retire && npm run lint && npm run test && npm run cover",
"snyk": "snyk test",
"nsp": "nsp check",
"retire": "retire",
"cover": "istanbul cover -- **/*.spec.js",
"lint": "node_modules/eslint/bin/eslint.js -c .eslintrc.js .",
"test": "NODE_ENV=test tape tests/**/*.spec.js",
"npmpublish": "publish"
},
"repository": {
"type": "git",
"url": "https://github.com/jkohrman/eslint-config-secure.git"
},
"bugs": {
"url": "https://github.com/jkohrman/eslint-config-secure/issues"
},
"keywords": [
"eslint",
"config",
"eslintconfig",
"code linter",
"security",
"static",
"analysis",
"lint",
"linter"
],
"author": {
"name": "Jeff Kohrman",
"email": "[email protected]",
"url": "https://jkohrman.github.io"
},
"homepage": "https://github.com/jkohrman/eslint-config-secure#readme",
"devDependencies": {
"eslint": "^3.10.0",
"eslint-plugin-no-unsafe-innerhtml": "^1.0.15",
"eslint-plugin-scanjs-rules": "^0.1.4",
"eslint-plugin-security": "^1.2.0",
"istanbul": "^0.4.5",
"nsp": "^2.6.2",
"publish": "^0.6.0",
"retire": "^1.2.10",
"snyk": "^1.19.1",
"tape": "^4.6.2"
},
"dependencies": {
"eslint": ">=3.10.0",
"eslint-plugin-no-unsafe-innerhtml": ">=1.0.15",
"eslint-plugin-scanjs-rules": ">=0.1.4",
"eslint-plugin-security": ">=1.2.0"
},
"peerDependencies": {
"eslint": ">=3.10.0",
"eslint-plugin-no-unsafe-innerhtml": ">=1.0.15",
"eslint-plugin-scanjs-rules": ">=0.1.4",
"eslint-plugin-security": ">=1.2.0"
},
"license": "MIT"
}