-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 937 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 937 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
42
{
"name": "node-pinger",
"version": "0.2.0",
"private": "true",
"description": "Just another uptime pinging service.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "mocha --reporter min --growl --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/servicient/node-pinger"
},
"keywords": [
"ping",
"heartbeat",
"uptime"
],
"author": "Servicient <dev@mytennislessons.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/servicient/node-pinger/issues"
},
"homepage": "https://github.com/servicient/node-pinger",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"dotenv": "^0.2.8",
"flatiron": "^0.3.11",
"mongodb": "^1.4.5",
"net-ping": "^1.1.10",
"promise": "^5.0.0",
"request-json": "^0.4.10",
"union": "^0.4.0"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.20.1"
}
}