-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
105 lines (105 loc) · 3.24 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"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 '{''{src,test}/!(test/**/fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{''{src,test}/!(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:macos": "npx @yao-pkg/pkg . -t node20-macos-x64 -o snyk-api-import-macos",
"pkg-binaries:macos-arm": "npx @yao-pkg/pkg . -t node20-macos-arm64 -o snyk-api-import-macos-arm",
"pkg-binaries:linux": "npx @yao-pkg/pkg . -t node20-linux-x64 -o snyk-api-import-linux",
"pkg-binaries:alpine": "npx @yao-pkg/pkg . -t node20-alpine-x64 -o snyk-api-import-alpine",
"pkg-binaries:windows": "npx @yao-pkg/pkg . -t node20-win-x64 -o snyk-api-import-win.exe"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-api-import"
},
"author": "Snyk Tech Services",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk/snyk-api-import#readme",
"dependencies": {
"@gitbeaker/core": "35.7.0",
"@gitbeaker/node": "35.7.0",
"@octokit/plugin-retry": "4.0.3",
"@octokit/rest": "19.0.5",
"base-64": "^1.0.0",
"bottleneck": "2.19.5",
"bunyan": "1.8.15",
"debug": "4.3.4",
"lodash": "4.17.21",
"micromatch": "4.0.8",
"needle": "2.9.1",
"p-map": "4.0.0",
"parse-link-header": "2.0.0",
"rimraf": "^5.0.7",
"simple-git": "3.16.0",
"sleep-promise": "8.0.1",
"snyk-request-manager": "1.8.4",
"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/base-64": "^1.0.0",
"@types/bunyan": "1.8.6",
"@types/debug": "4.1.5",
"@types/jest": "^29.5.12",
"@types/lodash": "4.17.5",
"@types/micromatch": "4.0.6",
"@types/needle": "2.0.4",
"@types/node": "20.11.1",
"@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",
"eslint-plugin-check-file": "1.2.3",
"jest": "^29.7.0",
"nock": "^13.2.1",
"prettier": "2.7.1",
"semantic-release": "17.3.0",
"ts-jest": "^29.1.5",
"tsc-watch": "^4.1.0",
"typescript": "4.5",
"uuid": "9.0.0"
},
"overrides": {
"snyk-request-manager": {
"axios": "1.7.4"
}
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [
"./node_modules/axios/dist/node/axios.cjs"
]
}
}