-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.95 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
{
"name": "bugsplat",
"version": "8.0.1",
"description": "error reporting for js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.spec.json",
"test:teamcity": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.spec.json",
"e2e": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.e2e.json",
"e2e:teamcity": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.e2e.json",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"release": "npm run build && npm publish --access public",
"lint": "eslint --fix"
},
"keywords": [
"crash",
"report",
"reporting",
"unhandled",
"exception",
"error",
"err",
"bugsplat"
],
"homepage": "https://www.bugsplat.com",
"bugs": "https://github.com/BugSplat-Git/bugsplat-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/BugSplat-Git/bugsplat-js"
},
"author": "@bobbyg603",
"license": "MIT",
"devDependencies": {
"@bugsplat/js-api-client": "^6.0.0",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"jasmine": "^4.5.0",
"jasmine-reporters": "^2.5.2",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}