forked from airbrake/airbrake-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "airbrake-js",
"version": "2.0.0-rnbeta.2",
"description": "Notify Airbrake on JavaScript exceptions",
"author": "Airbrake",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/giantslogik/airbrake-js.git"
},
"keywords": [
"exception",
"error",
"airbrake",
"notifier"
],
"dependencies": {
"cross-fetch": "^3.0.4",
"error-stack-parser": "^2.0.2",
"tdigest": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/request": "2.48.2",
"@types/sinon-chai": "3.2.2",
"babel-jest": "^24.8.0",
"babel-plugin-transform-define": "^1.3.1",
"chai": "4.2.0",
"imports-loader": "0.8.0",
"jest": "^24.8.0",
"promise-polyfill": "^8.1.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"source-map-loader": "0.2.4",
"ts-loader": "6.0.4",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.5.3"
},
"main": "dist/airbrake.common.js",
"web": "dist/airbrake.iife.js",
"module": "dist/airbrake.esm.js",
"jsnext:main": "dist/airbrake.esm.js",
"types": "dist/airbrake.d.ts",
"source": "src/index.ts",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup --config",
"test": "jest"
}
}