UNPKG

3.17 kBJSONView Raw
1{
2 "name": "@sentry/craft",
3 "version": "0.13.3",
4 "description": "The universal sentry workflow CLI",
5 "main": "dist/index.js",
6 "repository": "https://github.com/getsentry/craft",
7 "author": "Sentry",
8 "license": "MIT",
9 "bin": {
10 "craft": "dist/index.js",
11 "sentry-craft": "dist/index.js"
12 },
13 "resolutions": {
14 "**/set-value": ">=2.0.1",
15 "**/https-proxy-agent": ">=2.2.3",
16 "**/node-forge": ">=0.10.0",
17 "**/dot-prop": ">=4.2.1",
18 "**/kind-of": ">=6.0.3",
19 "**/node-fetch": ">=2.6.1",
20 "**/yargs-parser": ">=18.1.2"
21 },
22 "dependencies": {
23 "@google-cloud/storage": "2.3.4",
24 "@octokit/plugin-retry": "2.2.0",
25 "@octokit/rest": "16.35.2",
26 "@sentry/node": "4.6.3",
27 "@zeus-ci/sdk": "0.1.8",
28 "ajv": "6.6.2",
29 "async": "3.1.0",
30 "chalk": "2.4.1",
31 "cli-table": "0.3.1",
32 "consola": "1.4.5",
33 "inquirer": "6.2.1",
34 "js-yaml": "3.12.0",
35 "json-schema-to-typescript": "5.7.0",
36 "lodash": "4.17.19",
37 "mkdirp": "0.5.1",
38 "mustache": "3.0.1",
39 "nvar": "1.3.1",
40 "once": "1.4.0",
41 "ora": "2.1.0",
42 "request": "2.88.0",
43 "rimraf": "2.7.1",
44 "shell-quote": "1.6.1",
45 "simple-git": "1.131.0",
46 "split": "1.0.1",
47 "string-length": "3.1.0",
48 "tar": "4.4.8",
49 "tmp": "0.1.0",
50 "unzipper": "0.9.7",
51 "update-notifier": "2.5.0",
52 "yargs": "15.1.0"
53 },
54 "devDependencies": {
55 "@sentry/typescript": "^5.17.0",
56 "@types/async": "^3.0.1",
57 "@types/cli-table": "^0.3.0",
58 "@types/form-data": "^2.2.1",
59 "@types/inquirer": "^0.0.41",
60 "@types/jest": "^26.0.14",
61 "@types/js-yaml": "^3.11.1",
62 "@types/lodash": "^4.14.119",
63 "@types/mkdirp": "^1.0.0",
64 "@types/node": "^12.11.1",
65 "@types/node-fetch": "^2.1.1",
66 "@types/once": "^1.4.0",
67 "@types/ora": "^1.3.4",
68 "@types/request": "^2.47.1",
69 "@types/rimraf": "^2.0.2",
70 "@types/shell-quote": "^1.6.0",
71 "@types/tar": "^4.0.0",
72 "@types/tmp": "^0.0.33",
73 "@types/update-notifier": "^2.2.0",
74 "@types/yargs": "^15.0.3",
75 "@typescript-eslint/eslint-plugin": "^3.3.0",
76 "@typescript-eslint/parser": "^3.3.0",
77 "eslint": "^7.2.0",
78 "eslint-config-prettier": "^6.11.0",
79 "jest": "^26.5.3",
80 "npm-run-all": "^4.1.3",
81 "prettier": "^1.19.1",
82 "prettier-check": "^2.0.0",
83 "ts-jest": "^26.4.1",
84 "typescript": "^3.9.3"
85 },
86 "scripts": {
87 "build": "yarn run compile-config-schema && tsc -p tsconfig.build.json",
88 "build:watch": "yarn run compile-config-schema && tsc -p tsconfig.build.json --watch",
89 "precli": "run-s build",
90 "cli": "node dist",
91 "clean": "rimraf dist coverage",
92 "lint": "run-s lint:prettier lint:eslint",
93 "lint:prettier": "prettier-check 'src/**/*.ts'",
94 "lint:eslint": "eslint src --ext .ts --format stylish",
95 "fix": "run-s fix:tslint fix:prettier",
96 "fix:prettier": "prettier --write 'src/**/*.ts'",
97 "fix:eslint": "eslint src --ext .ts --fix --format stylish",
98 "test": "jest",
99 "test:watch": "jest --watch --notify",
100 "compile-config-schema": "node ./scripts/config-json-schema-to-ts.js"
101 },
102 "volta": {
103 "node": "12.17.0",
104 "yarn": "1.22.4"
105 }
106}