forked from airbrake/node-airbrake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.89 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
{
"author": "Airbrake Technologies, Inc.",
"contributors": [
"Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
"László Bácsi <[email protected]> (http://lackac.hu)",
"Carlos Brito Lage <[email protected]> (http://carloslage.net)",
"Stephen Celis <[email protected]> (http://stephencelis.com)",
"Sascha Depold <[email protected]> (http://depold.com)",
"Jon Keating <[email protected]> (http://www.thejon.org)",
"Gabriel Lesperance <[email protected]> (http://blog.wavo.me)",
"Mathias Pettersson <[email protected]> (https://github.com/mape)",
"Gary Rafferty <[email protected]> (http://www.garyrafferty.com)",
"Rob Scott <[email protected]> (http://lifekraze.com/rob)",
"Dylan Smith <[email protected]> (https://github.com/dylanahsmith)",
"stefounet <[email protected]> (http://fasterize.com)",
"sreuter <[email protected]> (https://github.com/sreuterairbrake.io",
"Johnny Halife <[email protected]> (http://johnny.io)"
],
"name": "airbrake",
"description": "A Node.js notifier for Airbrake, the leading exception reporting service.",
"version": "2.0.1",
"homepage": "https://github.com/airbrake/node-airbrake",
"repository": {
"type": "git",
"url": "git://github.com/airbrake/node-airbrake.git"
},
"main": "./index",
"engines": {
"node": "*"
},
"scripts": {
"lint": "eslint .",
"test": "test/run.js",
"posttest": "npm run lint"
},
"dependencies": {
"lodash.merge": "^4.6.0",
"request": "^2.81.0",
"stack-trace": "^0.0.9"
},
"devDependencies": {
"eslint": "~2.8.0",
"eslint-config-airbnb-base": "~1.0.3",
"eslint-plugin-import": "~1.6.1",
"express": "~4.13.4",
"far": "~0.0.4",
"hapi": "~13.5.0",
"mockery": "~1.4.0",
"nock": "^8.0.0",
"semver": "~5.3.0",
"sinon": "~1.7.2"
},
"optionalDependencies": {},
"license": "MIT"
}