-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 810 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 810 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
{
"name": "sentry-node",
"version": "2.3.2",
"description": "simple Node wrapper around Sentry API",
"engines": {
"node": ">=0.10.x"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "make -Br test",
"prepublish": "make build"
},
"repository": {
"type": "git",
"url": "git://github.com/Clever/sentry-node.git"
},
"keywords": [
"sentry",
"node"
],
"license": "BSD",
"bugs": {
"url": "https://github.com/Clever/sentry-node/issues"
},
"dependencies": {
"debug": "~2.6.9",
"loofah": "0.0.6",
"request": "^2.88.0",
"underscore": "~1.5.2"
},
"devDependencies": {
"bluebird": "^3.4.0",
"coffee-script": "~1.6.3",
"mocha": "^5.2.0",
"nock": "~0.23.0",
"sinon": "^1.10.3"
}
}