forked from getsentry/raven-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 946 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 946 Bytes
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
{
"name": "raven",
"description": "A standalone (Node.js) client for Sentry",
"keywords": [
"raven",
"sentry",
"python",
"errors",
"debugging",
"exceptions"
],
"version": "0.8.1",
"repository": "git://github.com/getsentry/raven-node.git",
"author": "Matt Robenolt <matt@ydekproductions.com>",
"license": "BSD",
"main": "index",
"bin": {
"raven": "./bin/raven"
},
"scripts": {
"pretest": "npm install",
"test": "NODE_ENV=test mocha --reporter dot && NODE_ENV=test coffee ./test/run.coffee"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"cookie": "0.1.0",
"lsmod": "~0.0.3",
"node-uuid": "~1.4.1",
"stack-trace": "0.0.7"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"glob": "~3.1.13",
"mocha": "*",
"mock-udp": "*",
"nock": "~0.28.2",
"should": "~3.3.1",
"connect": "*",
"express": "*",
"koa": "*"
}
}