UNPKG

2.74 kBJSONView Raw
1{
2 "name": "@sentry/craft",
3 "version": "0.7.6",
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 "dependencies": {
14 "@google-cloud/storage": "^2.3.4",
15 "@octokit/rest": "^16.14.0",
16 "@sentry/node": "4.6.3",
17 "@zeus-ci/sdk": "^0.1.6",
18 "ajv": "^6.5.2",
19 "chalk": "^2.4.1",
20 "cli-table": "^0.3.1",
21 "consola": "^1.4.1",
22 "dryrun": "^1.0.2",
23 "inquirer": "^6.0.0",
24 "js-yaml": "^3.12.0",
25 "json-schema-to-typescript": "^5.5.0",
26 "lodash": "^4.17.11",
27 "mustache": "^3.0.0",
28 "node-emoji": "^1.8.1",
29 "nvar": "^1.3.1",
30 "once": "^1.4.0",
31 "ora": "^2.1.0",
32 "request": "^2.88.0",
33 "rimraf": "^2.6.2",
34 "shell-quote": "^1.6.1",
35 "simple-git": "^1.96.0",
36 "split": "^1.0.1",
37 "tar": "^4.4.6",
38 "tmp": "^0.0.33",
39 "unzipper": "^0.9.3",
40 "update-notifier": "^2.5.0",
41 "yargs": "^12.0.5"
42 },
43 "devDependencies": {
44 "@sentry/typescript": "^4.4.2",
45 "@types/cli-table": "^0.3.0",
46 "@types/form-data": "^2.2.1",
47 "@types/inquirer": "^0.0.41",
48 "@types/jest": "^23.3.10",
49 "@types/js-yaml": "^3.11.1",
50 "@types/lodash": "^4.14.119",
51 "@types/node": "^10.3.3",
52 "@types/node-emoji": "^1.8.0",
53 "@types/node-fetch": "^2.1.1",
54 "@types/once": "^1.4.0",
55 "@types/ora": "^1.3.4",
56 "@types/request": "^2.47.1",
57 "@types/rimraf": "^2.0.2",
58 "@types/shell-quote": "^1.6.0",
59 "@types/tar": "^4.0.0",
60 "@types/tmp": "^0.0.33",
61 "@types/update-notifier": "^2.2.0",
62 "@types/yargs": "^12.0.3",
63 "jest": "^23.6.0",
64 "npm-run-all": "^4.1.3",
65 "prettier": "^1.13.5",
66 "prettier-check": "^2.0.0",
67 "ts-jest": "^23.10.5",
68 "tslint": "^5.12.0",
69 "typescript": "^3.2.2"
70 },
71 "scripts": {
72 "build": "yarn run compile-config-schema && tsc -p tsconfig.build.json",
73 "build:watch": "yarn run compile-config-schema && tsc -p tsconfig.build.json --watch",
74 "precli": "run-s build",
75 "cli": "node dist",
76 "clean": "rimraf dist coverage",
77 "lint": "run-s lint:prettier lint:tslint",
78 "lint:prettier": "prettier-check 'src/**/*.ts'",
79 "lint:tslint": "tslint -t stylish -p .",
80 "fix": "run-s fix:tslint fix:prettier",
81 "fix:prettier": "prettier --write 'src/**/*.ts'",
82 "fix:tslint": "tslint --fix -t stylish -p .",
83 "test": "jest",
84 "test:watch": "jest --watch --notify",
85 "compile-config-schema": "node ./scripts/config-json-schema-to-ts.js"
86 },
87 "yargs": {
88 "boolean-negation": false
89 },
90 "toolchain": {
91 "node": "8.15.1",
92 "yarn": "1.14.0"
93 }
94}