forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "bugsnag-js",
"description": "Automatically detect JavaScript errors on your websites, collect detailed diagnostic information, and get notified about errors in real-time.",
"keywords": [
"exception",
"bugsnag",
"error",
"JavaScript",
"browsers",
"monitoring",
"reporting",
"client-side"
],
"version": "3.2.0",
"license": "MIT",
"main": "src/bugsnag.js",
"types": "src/bugsnag.d.ts",
"scripts": {
"lint": "grunt eslint",
"test": "karma start --single-run",
"test:watch": "karma start --browsers PhantomJS",
"test:quick": "karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "https://github.com/bugsnag/bugsnag-js"
},
"devDependencies": {
"eslint": "^3.4.0",
"grunt": "~0.4.2",
"grunt-bumpx": "~0.1.0",
"grunt-contrib-watch": "~0.5.2",
"grunt-docco": "~0.4.0",
"grunt-invalidate-cloudfront": "~0.1.4",
"grunt-regex-replace": "~0.2.5",
"grunt-s3": "git://github.com/pifantastic/grunt-s3",
"gruntify-eslint": "^1.3.0",
"karma": "~1.3.0",
"karma-mocha-ie-legacy": "file:./test/karma-mocha",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sauce-launcher": "^1.0.0",
"mocha": "~1.15.1",
"uglifyjs": "latest"
}
}