-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
127 lines (127 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@sentry/wizard",
"version": "3.34.4",
"homepage": "https://github.com/getsentry/sentry-wizard",
"repository": "https://github.com/getsentry/sentry-wizard",
"description": "Sentry wizard helping you to configure your project",
"keywords": [
"sentry",
"wizard",
"sdk",
"cli",
"project",
"setup",
"install",
"configure"
],
"bin": {
"sentry-wizard": "dist/bin.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "0.7.0",
"@sentry/cli": "^1.77.3",
"@sentry/node": "^7.119.2",
"axios": "1.7.4",
"chalk": "^2.4.1",
"glob": "^8.1.0",
"inquirer": "^6.2.0",
"lodash": "^4.17.15",
"magicast": "^0.2.10",
"opn": "^5.4.0",
"r2": "^2.0.1",
"read-env": "^1.3.0",
"recast": "^0.23.3",
"semver": "^7.5.3",
"xcode": "3.0.1",
"xml-js": "^1.6.11",
"yargs": "^16.2.0"
},
"devDependencies": {
"@sentry-internal/eslint-config-sdk": "^7.48.0",
"@types/chai": "^4.3.17",
"@types/glob": "^7.2.0",
"@types/inquirer": "^0.0.43",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.144",
"@types/node": "^10.11.0",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.7",
"@types/yargs": "^16.0.9",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"dotenv": "^16.4.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsx": "^3.14.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.18.0",
"npm": ">=3.10.7",
"yarn": ">=1.0.2"
},
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "yarn clean",
"build:watch": "yarn tsc -w",
"build": "yarn tsc",
"postbuild": "chmod +x ./dist/bin.js && cp -r scripts/** dist",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:prettier": "prettier --check \"{lib,src,test}/**/*.ts\"",
"lint:eslint": "eslint . --cache --format stylish",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:prettier": "prettier --write \"{lib,src,test}/**/*.ts\"",
"fix:eslint": "eslint . --format stylish --fix",
"test": "yarn build && jest",
"test:e2e": "yarn build && ./e2e-tests/run.sh",
"try": "ts-node bin.ts",
"try:uninstall": "ts-node bin.ts --uninstall",
"test:watch": "jest --watch"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"dist"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/__mocks__"
],
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/",
"\\.d\\.(jsx?|tsx?)$",
"\\.no-jest\\.(jsx?|tsx?)$",
"/e2e-tests/"
],
"testEnvironment": "node"
},
"author": "Sentry",
"license": "MIT",
"volta": {
"node": "14.18.3",
"yarn": "1.22.19"
}
}