forked from getsentry/sentry-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.9 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
{
"name": "sentry-cordova",
"version": "0.15.0",
"main": "dist/js/sentry-cordova.js",
"types": "dist/js/sentry-cordova.d.ts",
"license": "MIT",
"repository": "git://github.com/getsentry/sentry-cordova.git",
"cordova": {
"id": "sentry-cordova",
"platforms": [
"android",
"ios"
]
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"sentry",
"debugging",
"errors",
"exceptions",
"logging"
],
"description": "Official Sentry SDK for Cordova",
"dependencies": {
"@sentry/browser": "~5.1.0",
"@sentry/core": "~5.1.0",
"@sentry/minimal": "~5.1.0",
"@sentry/types": "~5.1.0",
"@sentry/utils": "~5.1.0",
"@sentry/wizard": "^0.12.1"
},
"devDependencies": {
"@sentry/typescript": "^5.1.0",
"@types/cordova": "0.0.34",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"codecov": "^3.3.0",
"jest": "^24.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"prettier-check": "^2.0.0",
"raven-js": "^3.27.0",
"replace-in-file": "^4.0.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.4",
"vrsource-tslint-rules": "^6.0.0"
},
"scripts": {
"build:bundle": "rollup --config",
"build:typescript": "tsc -p tsconfig.build.json",
"build": "run-s clean build:typescript build:bundle",
"clean": "rimraf dist coverage",
"jest": "jest",
"test:watch": "jest --watch",
"test": "jest",
"codecov": "codecov",
"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 .",
"preversion:changelog": "grep -q -F \"## v$npm_package_version\" CHANGELOG.md",
"version:all": "run-s preversion:changelog version:bump test",
"version:bump": "node ./scripts/versionbump.js && git add -A"
},
"jest": {
"testEnvironment": "jsdom",
"testURL": "http://localhost/",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"notify": false,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [],
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.(jsx?|tsx?)$",
"\\.no-jest\\.(jsx?|tsx?)$"
]
}
}