forked from airbrake/airbrake-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "airbrake-js",
"version": "1.6.0-beta.2",
"description": "Notify Airbrake on JavaScript exceptions",
"author": "Airbrake",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/airbrake/airbrake-js.git"
},
"keywords": [
"exception",
"error",
"airbrake",
"notifier"
],
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"@types/request": "2.48.1",
"@types/sinon": "5.0.5",
"@types/sinon-chai": "3.2.0",
"chai": "4.2.0",
"error-stack-parser": "2.0.2",
"imports-loader": "0.8.0",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-sinon-chai": "2.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "3.0.5",
"mocha": "5.2.0",
"promise-polyfill": "^8.1.0",
"puppeteer": "1.10.0",
"sinon": "7.1.1",
"sinon-chai": "3.2.0",
"source-map-loader": "0.2.4",
"ts-loader": "5.3.0",
"tslint": "5.11.0",
"tslint-loader": "3.6.0",
"typescript": "3.1.6",
"webpack": "4.25.1",
"webpack-cli": "3.1.2"
},
"main": "dist/client.js",
"types": "dist/client.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack",
"test": "karma start"
}
}