forked from snyk/snyk-api-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "snyk-api-import",
"description": "Snyk import via API",
"main": "dist/index.js",
"bin": {
"snyk-api-import": "dist/index.js"
},
"scripts": {
"format:check": "prettier --check '{''{lib,test}/!(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 '{lib,test}/**/*.ts'",
"test": "npm run lint && npm run build && npm run test:unit",
"test:unit": "jest --runInBand --silent --ci",
"test:unit:debug": "npm run build && DEBUG=* jest",
"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",
"snyk-test": "snyk test",
"pkg-binaries-linux": "npx [email protected] dist/index.js -r './dist/**/*.js' -t linux-x64-12.16.2 -o snyk-api-import-linux",
"pkg-binaries": "npx [email protected] dist/index.js -r './dist/**/*.js' -t mac-x64-10.21.0 -o snyk-api-import-macos"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk-tech-services/snyk-api-import"
},
"author": "Snyk Tech Services",
"license": "Apache-2.0",
"engines": {
"node": ">=12"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk-tech-services/snyk-api-import#readme",
"dependencies": {
"@gitbeaker/core": "35.7.0",
"@gitbeaker/node": "35.7.0",
"@octokit/rest": "18.12.0",
"@types/base-64": "^1.0.0",
"base-64": "^1.0.0",
"bottleneck": "2.19.5",
"bunyan": "1.8.15",
"debug": "4.3.4",
"lodash": "4.17.21",
"needle": "2.9.1",
"p-map": "4.0.0",
"parse-link-header": "2.0.0",
"sleep-promise": "8.0.1",
"snyk-request-manager": "1.8.0",
"source-map-support": "^0.5.16",
"split": "1.0.1",
"yargs": "16.2.0"
},
"devDependencies": {
"@octokit/types": "6.14.2",
"@semantic-release/exec": "5.0.0",
"@types/bunyan": "1.8.6",
"@types/debug": "4.1.5",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"@types/needle": "2.0.4",
"@types/node": "^12.12.26",
"@types/parse-link-header": "1.0.0",
"@types/split": "1.0.0",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"eslint": "7.30.0",
"eslint-config-prettier": "^6.10.0",
"jest": "27.0.6",
"nock": "^13.2.1",
"prettier": "^1.19.1",
"semantic-release": "17.3.0",
"ts-jest": "27.0.3",
"tsc-watch": "^4.1.0",
"typescript": "4.3.5"
},
"pkg": {
"scripts": [
"dist/**/*.js"
]
}
}