forked from getsentry/sentry-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.59 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
{
"name": "@sentry/electron",
"description": "Offical Sentry SDK for Electron",
"version": "0.11.0",
"main": "./dist/index.js",
"repository": "https://github.com/getsentry/sentry-electron.git",
"author": "Sentry",
"contributors": [
"Tim Fish"
],
"license": "MIT",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist coverage",
"preexample": "run-s clean build",
"example": "electron example",
"lint": "run-s lint:prettier lint:tslint",
"lint:prettier": "prettier-check \"{src,test}/**/*.ts\"",
"lint:tslint": "tslint -t stylish -p .",
"fix": "run-s fix:tslint fix:prettier",
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
"fix:tslint": "tslint --fix -t stylish -p .",
"pretest": "run-s clean build",
"test": "cross-env TS_NODE_PROJECT=tsconfig.json xvfb-maybe electron-mocha --require ts-node/register/transpile-only --timeout 3000 ./test/unit/**/*.ts",
"pree2e": "run-s clean build",
"e2e": "cross-env TS_NODE_PROJECT=tsconfig.json xvfb-maybe mocha --require ts-node/register/transpile-only --timeout 30000 ./test/e2e/**/*.ts"
},
"dependencies": {
"@sentry/browser": "^4.0.5",
"@sentry/core": "^4.0.5",
"@sentry/node": "^4.0.5",
"@sentry/minimal": "^4.0.5",
"@sentry/types": "^4.0.0",
"@sentry/utils": "^4.0.5",
"electron-fetch": "1.1.0",
"form-data": "2.3.2",
"util.promisify": "1.0.0"
},
"devDependencies": {
"@sentry/typescript": "^4.0.0",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.0",
"@types/finalhandler": "^0.0.32",
"@types/form-data": "^2.2.1",
"@types/mocha": "^5.2.5",
"@types/multiparty": "^0.0.31",
"@types/node-fetch": "^1.6.9",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"electron": "^2.0.9",
"electron-download": "^4.1.1",
"electron-mocha": "^6.0.4",
"express": "^4.16.2",
"extract-zip": "^1.6.7",
"finalhandler": "^1.1.1",
"http-router": "^0.5.0",
"mocha": "^5.2.0",
"multiparty": "^4.2.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"prettier-check": "^2.0.0",
"rimraf": "^2.6.2",
"temporary-directory": "^1.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.1",
"xvfb-maybe": "^0.2.1"
}
}