forked from snyk-labs/snyk-deps-to-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "snyk-deps-to-csv",
"description": "collect dependencies for a snyk group into a combined csv",
"main": "dist/index.js",
"scripts": {
"format:check": "prettier --check '{''{src,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{''{src,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --cache '**/*.ts'",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --verbose",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run build"
},
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=12"
},
"files": [
"bin",
"dist",
"conf"
],
"dependencies": {
"debug": "^4.1.1",
"ora": "^5.2.0",
"p-map": "4.0.0",
"snyk-request-manager": "^1.4.2",
"tslib": "^1.10.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^25.1.1",
"@types/node": "^12.12.26",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"ts-jest": "^26.5.5",
"tsc-watch": "^4.1.0",
"typescript": "^4.2.4"
},
"pkg": {
"scripts": [
"dist/*.js"
]
},
"bin": {
"snyk-deps-to-csv": "./dist/index.js"
},
"release": {
"branches": [
"main"
]
}
}