forked from snyk-labs/snyk-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "snyk-filter",
"version": "1.0.0",
"description": "Module to consume json output from Snyk CLI for advanced filtering and results display",
"main": "index.js",
"scripts": {
"test": "mocha ./tests && npm run lint",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"lint": "prettier --check **/*.js",
"format": "prettier --write **/*.js"
},
"author": "Antoine Arlaud, [email protected]",
"license": "ISC",
"bin": {
"snyk-filter": "./index.js"
},
"dependencies": {
"@snyk/protect": "1.1167.0",
"chalk": "4.1.2",
"debug": "4.3.4",
"is-relative": "1.0.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"minimist": "1.2.8",
"node-jq": "2.3.5",
"mkdirp": "0.5.2",
"cacheable-request": "3.0.0"
},
"devDependencies": {
"mocha": "10.1.0",
"prettier": "2.8.8"
},
"engines": {
"node": ">=10"
}
}