-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
61
62
{
"name": "uptimey",
"title": "uptimey",
"description": "simple server uptime monitor",
"version": "1.0.0",
"author": "\"stefanbc\" Stefan Cosma (http://stefancosma.xyz/)",
"repository": "stefanbc/uptimey",
"license": "MIT",
"scripts": {
"start": "node ./server",
"test": "grunt test"
},
"pre-commit": [
"test"
],
"keywords": [
"server",
"monitor",
"uptime",
"network"
],
"dependencies": {
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"express": "~4.14.1",
"express-rate-limit": "^2.6.0",
"getos": "^2.8.4",
"helmet": "^3.5.0",
"humem": "^0.1.1",
"internal-ip": "^1.2.0",
"iplocation": "^2.0.1",
"ipmask": "^1.0.0",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"macos-release": "^1.0.0",
"moment": "^2.17.1",
"morgan": "~1.7.0",
"octicons": "^5.0.1",
"os-name": "^2.0.1",
"os-uptime": "^2.0.0",
"public-ip": "^2.3.3",
"pug": "~2.0.0-beta10",
"win-release": "^1.1.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-cssmin": "^2.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^2.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-puglint": "^1.0.0",
"grunt-sass-lint": "^0.2.2",
"time-grunt": "^1.3.0"
}
}