forked from IBM/audit-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "audit-ci",
"version": "2.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",
"travis",
"travis-ci",
"circleci"
],
"bin": {
"audit-ci": "bin/audit-ci"
},
"files": [
"bin",
"lib/*",
"README.md"
],
"scripts": {
"lint": "eslint -c ./.eslintrc.json **/*.js",
"test": "mocha --exit --timeout 40000 --recursive --reporter spec test/*.js"
},
"dependencies": {
"JSONStream": "^1.3.5",
"cross-spawn": "6.0.5",
"event-stream": "4.0.1",
"readline-transform": "0.9.0",
"semver": "^6.0.0",
"yargs": "12.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "1.3.1",
"mocha": "^6.1.4",
"prettier": "1.16.4",
"pretty-quick": "1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint && npm run test"
}
}
}