forked from reactivepixel/watchtower
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 707 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 707 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
{
"author": "Charlie Revett",
"name": "watchtower-js",
"description": "Monitors your site and posts outages to Slack.",
"version": "1.0.2",
"license": "MIT",
"repository": {
"url": "https://github.com/revett/watchtower"
},
"scripts": {
"test": "APP_ENV=test mocha tests"
},
"main": "./lib/watchtower",
"keywords": [
"monitor",
"site",
"slack"
],
"bin": {
"watchtower": "./bin/watchtower"
},
"dependencies": {
"cli-color": "^0.3.3",
"js-yaml": "^3.2.7",
"lodash": "^3.7.0",
"nock": "^1.4.0",
"node-slackr": "^0.1.0",
"request": "^2.55.0"
},
"engines": {
"node": "*"
},
"devDependencies": {
"mocha": "^2.2.4"
}
}