-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "npm-audit-html",
"version": "0.0.0-development",
"description": "Generate a HTML report for NPM Audit",
"main": "index.js",
"bin": {
"npm-audit-html": "index.js"
},
"scripts": {
"test": "npm run lint && npm run audit-report && npm audit",
"test-ci": "cd test; npm i && npm audit --json | node ../index.js",
"lint": "eslint '*.js' 'lib/**/*.js'",
"lint:fix": "eslint '*.js' 'lib/**/*.js' --fix",
"lint!": "npm run format && npm run lint:fix",
"format": "prettier --write '*.js' 'lib/**/*.js'",
"audit-report": "npm audit --json | node index.js -o tests/npm-audit.html",
"cm": "git-cz",
"pre-commit": "lint-staged",
"semantic-release": "semantic-release"
},
"author": "eventOne Labs <[email protected]>",
"repository": "eventOneHQ/npm-audit-html",
"license": "MIT",
"devDependencies": {
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"semantic-release": "^17.2.1"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^3.0.2",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"highlight.js": "^10.3.1",
"marked": "^1.2.2",
"moment": "^2.29.1",
"numeral": "^2.0.6",
"open": "^7.3.0",
"terminal-link": "^2.1.1",
"update-notifier": "^4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"npm run lint!",
"git add"
]
}
}