-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "rollbar-stream",
"version": "3.2.0",
"description": "Stream errors to rollbar",
"author": "Good Eggs <[email protected]>",
"contributors": [
"Michael Kebbekus <[email protected]>"
],
"license": "MIT",
"keywords": [
"rollbar"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/rollbar-stream.git"
},
"homepage": "https://github.com/goodeggs/rollbar-stream",
"bugs": "https://github.com/goodeggs/rollbar-stream/issues",
"dependencies": {
"rollbar": "^2.25.2",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^1.10.0",
"coffee-script": ">=1.8.x",
"fibrous": "^0.3.3",
"mocha": "~1.x.x",
"sinon": "^1.12.2",
"stack-trace": "0.0.9"
},
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "mocha"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}