forked from eslint-community/eslint-plugin-security
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 986 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
{
"name": "eslint-plugin-security",
"version": "1.4.0",
"description": "Security rules for eslint",
"main": "index.js",
"scripts": {
"changelog": "changelog eslint-plugin-security all > CHANGELOG.md",
"test": "./node_modules/.bin/mocha test/**/*",
"lint": "./node_modules/.bin/eslint .",
"cont-int": "npm test && npm run-script lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodesecurity/eslint-plugin-security.git"
},
"keywords": [
"eslint",
"security",
"nodesecurity"
],
"author": "Node Security Project",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nodesecurity/eslint-plugin-security/issues"
},
"homepage": "https://github.com/nodesecurity/eslint-plugin-security#readme",
"dependencies": {
"safe-regex": "^2.0.0"
},
"devDependencies": {
"changelog": "1.3.0",
"eslint": "^2.10.1",
"eslint-config-nodesecurity": "^1.3.1",
"mocha": "^6.0.2"
}
}