UNPKG

1.34 kBJSONView Raw
1{
2 "name": "raven",
3 "description": "A standalone (Node.js) client for Sentry",
4 "keywords": ["debugging", "errors", "exceptions", "logging", "raven", "sentry"],
5 "version": "2.6.4",
6 "repository": "git://github.com/getsentry/raven-js.git",
7 "license": "BSD-2-Clause",
8 "homepage": "https://github.com/getsentry/raven-js",
9 "author": "Matt Robenolt <matt@ydekproductions.com>",
10 "main": "index.js",
11 "bin": {
12 "raven": "./bin/raven"
13 },
14 "scripts": {
15 "lint": "eslint .",
16 "test":
17 "NODE_ENV=test istanbul cover _mocha -- --reporter dot && NODE_ENV=test coffee ./test/run.coffee",
18 "test-mocha": "NODE_ENV=test mocha",
19 "test-full": "npm run test && cd test/instrumentation && ./run.sh"
20 },
21 "engines": {
22 "node": ">= 4.0.0"
23 },
24 "dependencies": {
25 "cookie": "0.3.1",
26 "md5": "^2.2.1",
27 "stack-trace": "0.0.10",
28 "timed-out": "4.0.1",
29 "uuid": "3.3.2"
30 },
31 "devDependencies": {
32 "coffee-script": "~1.10.0",
33 "connect": "*",
34 "eslint": "^4.5.0",
35 "eslint-config-prettier": "^2.3.0",
36 "express": "*",
37 "glob": "~3.1.13",
38 "istanbul": "^0.4.3",
39 "mocha": "~3.1.2",
40 "nock": "~9.0.0",
41 "prettier": "^1.6.1",
42 "should": "11.2.0",
43 "sinon": "^3.3.0"
44 },
45 "prettier": {
46 "singleQuote": true,
47 "bracketSpacing": false,
48 "printWidth": 90
49 }
50}