-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
106 lines (106 loc) · 3.25 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
106
{
"name": "@sentry/craft",
"version": "2.2.0-dev.0",
"description": "The universal sentry workflow CLI",
"main": "dist/craft",
"repository": "https://github.com/getsentry/craft",
"author": "Sentry",
"license": "MIT",
"bin": {
"craft": "dist/craft",
"sentry-craft": "dist/craft"
},
"resolutions": {
"**/set-value": ">=2.0.1",
"**/https-proxy-agent": ">=2.2.3",
"**/node-forge": ">=0.10.0",
"**/dot-prop": ">=4.2.1",
"**/kind-of": ">=6.0.3",
"**/node-fetch": "^2.6.7",
"**/yargs-parser": ">=18.1.2",
"**/parse-url": ">=5.0.3",
"**/ansi-regex": ">=5.0.1 < 6.0.0"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.2.0",
"@google-cloud/storage": "^5.7.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/request-error": "^2.1.0",
"@octokit/rest": "^18.10.0",
"@sentry/node": "4.6.3",
"@sentry/typescript": "^5.17.0",
"@types/async": "^3.0.1",
"@types/aws4": "^1.5.1",
"@types/cli-table": "^0.3.0",
"@types/extract-zip": "^2.0.1",
"@types/git-url-parse": "^9.0.0",
"@types/is-ci": "^2.0.0",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.0",
"@types/node": "^12.11.1",
"@types/node-fetch": "^2.5.10",
"@types/ora": "^1.3.4",
"@types/prompts": "^2.0.11",
"@types/rimraf": "^2.0.2",
"@types/shell-quote": "^1.6.0",
"@types/tar": "^4.0.0",
"@types/tmp": "^0.0.33",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"ajv": "6.12.6",
"async": "3.2.2",
"aws4": "^1.11.0",
"chalk": "4.1.1",
"cli-table": "0.3.1",
"consola": "2.15.3",
"esbuild": "^0.11.6",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-formatter-github-annotations": "^0.1.0",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^4.2.4",
"git-url-parse": "^11.4.4",
"is-ci": "^2.0.0",
"jest": "^29.6.0",
"js-yaml": "4.1.0",
"json-schema-to-typescript": "5.7.0",
"mkdirp": "^1.0.4",
"mustache": "3.0.1",
"nock": "^13.2.4",
"node-fetch": "^2.6.1",
"nvar": "1.3.1",
"ora": "5.4.0",
"prettier": "^2.2.1",
"prompts": "2.4.1",
"rimraf": "2.7.1",
"shell-quote": "1.7.3",
"simple-git": "^3.6.0",
"source-map-support": "^0.5.20",
"split": "1.0.1",
"string-length": "3.1.0",
"tar": "6.2.1",
"tmp": "0.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"yargs": "15.4.1"
},
"scripts": {
"build:fat": "yarn run compile-config-schema && tsc -p tsconfig.build.json",
"build:watch": "yarn run compile-config-schema && tsc -p tsconfig.build.json --watch",
"build": "yarn compile-config-schema && esbuild src/index.ts --sourcemap --bundle --platform=node --target=node14.17 --outfile=dist/craft --minify",
"precli": "yarn build",
"cli": "node -r source-map-support/register dist/craft",
"clean": "rimraf dist coverage",
"lint": "eslint . --ext .ts,.tsx,.js --cache --cache-strategy content",
"fix": "yarn lint --fix",
"test": "jest",
"test:watch": "jest --watch --notify",
"compile-config-schema": "node ./scripts/config-json-schema-to-ts.js"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.19"
}
}