-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "eslint-plugin-security",
"version": "3.0.1",
"description": "Security rules for eslint",
"main": "index.js",
"scripts": {
"changelog": "changelog eslint-plugin-security all > CHANGELOG.md",
"cont-int": "npm test && npm run lint",
"format": "prettier --write .",
"lint": "npm-run-all \"lint:*\"",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm run update:eslint-docs -- --check",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"release": "npx semantic-release",
"test": "mocha test/**",
"update:eslint-docs": "eslint-doc-generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint-community/eslint-plugin-security.git"
},
"keywords": [
"eslint",
"security",
"nodesecurity"
],
"author": "Node Security Project",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eslint-community/eslint-plugin-security/issues"
},
"homepage": "https://github.com/eslint-community/eslint-plugin-security#readme",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.md": "prettier --write",
"*.yml": "prettier --write"
},
"dependencies": {
"safe-regex": "^2.1.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"changelog": "1.4.2",
"eslint": "^9.0.0",
"eslint-config-nodesecurity": "^1.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-doc-generator": "^1.7.0",
"eslint-plugin-eslint-plugin": "^5.5.1",
"lint-staged": "^12.3.7",
"markdownlint-cli": "^0.32.2",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"yorkie": "^2.0.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": "https://opencollective.com/eslint"
}