-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 953 Bytes
/
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
{
"name": "node-uptime",
"description": "Remote monitoring for HTTP applications",
"version": "3.2.0",
"author": "Francois Zaninotto",
"dependencies": {
"mongoose": "5.9.25",
"mongoose-lifecycle": "1.0.0",
"express": "4.17.1",
"express-partials": "0.1.1",
"connect-flash": "0.1.0",
"ejs": "3.1.3",
"config": "0.4.32",
"async": "0.1.22",
"socket.io": "2.4.0",
"semver": "7.3.2",
"moment": "2.19.3",
"nodemailer": "6.6.1",
"js-yaml": "3.14.0",
"webpagetest": "0.2.0"
},
"devDependencies": {
"mocha": "1.7.x",
"should": "1.1.0",
"nodemailer": "6.6.1"
},
"keywords": ["uptime", "monitoring", "api", "check"],
"repository": "https://github.com/fzaninotto/uptime",
"license": "MIT",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"scripts": {
"test": "node_modules/.bin/mocha test/lib/",
"start": "node server.js"
}
}