forked from IBM/audit-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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": "audit-ci",
"version": "4.1.0",
"description": "Audits npm and yarn projects in CI environments",
"license": "Apache-2.0",
"main": "./lib/audit-ci.js",
"homepage": "https://github.com/IBM/audit-ci",
"bugs": "https://github.com/IBM/audit-ci/issues",
"repository": {
"type": "git",
"url": "[email protected]:IBM/audit-ci.git"
},
"keywords": [
"audit",
"ci",
"npm",
"yarn",
"security",
"actions",
"travis",
"travis-ci",
"circleci"
],
"bin": {
"audit-ci": "./lib/audit-ci.js"
},
"files": [
"lib/*",
"README.md"
],
"scripts": {
"lint": "eslint -c ./.eslintrc.json **/*.js",
"lint:fix": "eslint -c ./.eslintrc.json **/*.js --fix",
"test": "mocha --exit --timeout 40000 --recursive --reporter spec test/*.js"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"event-stream": "4.0.1",
"JSONStream": "^1.3.5",
"readline-transform": "1.0.0",
"semver": "^7.0.0",
"yargs": "^15.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.0.0",
"mocha": "^7.2.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint && npm run test"
}
}
}