-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
103 lines (103 loc) · 2.83 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
{
"name": "sentry-cordova",
"version": "1.4.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": "7.119.1",
"@sentry/core": "7.119.1",
"@sentry/hub": "7.119.1",
"@sentry/types": "7.119.1",
"@sentry/utils": "7.119.1",
"@sentry/wizard": "^3.32.0"
},
"devDependencies": {
"@sentry-internal/eslint-config-sdk": "7.119.1",
"@sentry-internal/typescript": "7.119.1",
"@types/cordova": "0.0.34",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"codecov": "^3.5.0",
"eslint": "7.6.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"replace-in-file": "^4.1.3",
"rimraf": "^3.0.0",
"rollup": "^2.79.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"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:eslint",
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
"lint:eslint": "eslint . --cache --format stylish",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
"fix:eslint": "eslint . --format stylish --fix",
"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?)$"
]
}
}