This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
66 lines (66 loc) · 1.55 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
61
62
63
64
65
66
{
"name": "raven",
"description": "A standalone (Node.js) client for Sentry",
"keywords": [
"debugging",
"errors",
"exceptions",
"logging",
"raven",
"sentry"
],
"version": "2.6.2",
"repository": "git://github.com/getsentry/raven-node.git",
"license": "BSD-2-Clause",
"homepage": "https://github.com/getsentry/raven-node",
"author": "Matt Robenolt <[email protected]>",
"main": "index.js",
"bin": {
"raven": "./bin/raven"
},
"scripts": {
"lint": "eslint . --quiet",
"precommit": "lint-staged",
"pretest": "npm install && npm run lint",
"test": "NODE_ENV=test istanbul cover _mocha -- --reporter dot && NODE_ENV=test coffee ./test/run.coffee",
"test-mocha": "NODE_ENV=test mocha",
"test-full": "npm run test && cd test/instrumentation && ./run.sh"
},
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"cookie": "0.3.1",
"md5": "^2.2.1",
"stack-trace": "0.0.10",
"timed-out": "4.0.1",
"uuid": "3.0.0"
},
"devDependencies": {
"coffee-script": "~1.10.0",
"connect": "*",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"express": "*",
"glob": "~3.1.13",
"husky": "^0.14.3",
"istanbul": "^0.4.3",
"lint-staged": "^4.0.4",
"mocha": "~3.1.2",
"nock": "~9.0.0",
"prettier": "^1.6.1",
"should": "11.2.0",
"sinon": "^3.3.0"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 90
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}