This repository has been archived by the owner on Aug 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "statsd-alerting-backend",
"version": "1.0.1",
"description": "A simple StatsD backend to send customizable alerts",
"keywords": [
"statsd",
"alerting",
"slack",
"email"
],
"homepage": "https://github.com/joshgummersall/statsd-alerting-backend",
"bugs": {
"url": "https://github.com/joshgummersall/statsd-alerting-backend/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Josh Gummersall",
"email": "[email protected]",
"url": "http://joshgummersall.me"
},
"contributors": [
{
"name": "Chris Whitten",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/joshgummersall/statsd-alerting-backend.git"
},
"scripts": {
"compile": "node_modules/.bin/gulp compile",
"lint": "node_modules/.bin/gulp lint",
"prepublish": "npm run compile",
"test": "node_modules/.bin/mocha -r coffee-script/register test/**/*_test.coffee"
},
"dependencies": {
"handlebars": "^4.0.0",
"node-hipchat": "^0.4.5",
"nodemailer": "^2.3.2",
"pagerduty": "0.0.3",
"raven": "^0.6.3",
"request": "^2.48.0",
"underscore": "^1.7.0",
"wildcard": "^1.1.0",
"xoauth2": "^1.1.0"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"gulp": "^3.8.10",
"gulp-coffee": "^2.2.0",
"gulp-coffeelint": "^0.4.0",
"gulp-util": "^3.0.1",
"mocha": "^2.0.1",
"should": "^4.3.0",
"sinon": "^1.12.1"
}
}