-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "fetch-cwe-list",
"version": "0.0.3",
"description": "A simple Node.js module that fetches and parses the latest Common Weakness Enumeration (CWE) list",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"commit": "npx git-cz"
},
"author": {
"name": "Alejandro Saenz",
"email": "[email protected]",
"url": "https://www.alejandrosaenz.com"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"unzipper": "^0.10.11",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"standard-version": "^9.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Whamo12/fetch-cwe-list"
},
"homepage": "https://github.com/Whamo12/fetch-cwe-list",
"keywords": [
"web security",
"web application security",
"webappsec",
"owasp",
"security",
"cwe",
"common weakness enumeration"
]
}