forked from getsentry/sentry-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"private": true,
"scripts": {
"build": "lerna run --stream --concurrency 1 --sort build",
"build:es5": "lerna run --stream --concurrency 1 --sort build:es5",
"build:esm": "lerna run --stream --concurrency 1 --sort build:esm",
"build:watch": "lerna run build:watch --stream --no-sort --concurrency 9999",
"clean": "lerna run --stream clean",
"fix": "lerna run --stream --concurrency 1 fix",
"link:yarn": "lerna run --stream --concurrency 1 link:yarn",
"lint": "lerna run --stream --concurrency 1 lint",
"lint:json": "lerna run --stream --concurrency 1 lint:tslint:json",
"test": "lerna run --stream --concurrency 1 --sort test",
"codecov": "codecov"
},
"toolchain": {
"node": "10.15.3",
"yarn": "1.13.0"
},
"workspaces": [
"packages/browser",
"packages/core",
"packages/hub",
"packages/integrations",
"packages/minimal",
"packages/node",
"packages/opentracing",
"packages/types",
"packages/typescript",
"packages/utils"
],
"devDependencies": {
"@google-cloud/storage": "^2.3.1",
"@strictsoftware/typedoc-plugin-monorepo": "^0.2.1",
"@types/chai": "^4.1.3",
"@types/jest": "^24.0.11",
"@types/mocha": "^5.2.0",
"@types/node": "^11.11.3",
"@types/raven": "^2.5.1",
"@types/sinon": "^7.0.10",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"danger": "^7.0.14",
"danger-plugin-tslint": "^2.0.0",
"jest": "^24.5.0",
"lerna": "3.13.1",
"mocha": "^6.0.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.14.0",
"prettier-check": "^2.0.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.6.3",
"sinon": "^7.2.7",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333",
"typescript-tslint-plugin": "^0.3.1"
}
}