forked from nodeadmin/nodeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
61
62
63
64
65
66
67
{
"name": "nodeadmin",
"version": "0.1.1",
"description": "A fantastically elegant interface for MySQL and Node.js/Express management",
"keywords": [
"express",
"mysql",
"middleware",
"admin",
"server admin",
"databases",
"dashboard"
],
"main": "middleware/index.js",
"scripts": {
"test": "node ./middleware/tests/test.js",
"postinstall": "npm install --prefix ./middleware/public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodeadmin/nodeadmin"
},
"contributors": [
{
"name": "Alex Hutchison",
"url": "https://github.com/dutchers"
},
{
"name": "Andrew Nickell",
"url": "https://github.com/nickell-andrew"
},
{
"name": "Laura Knight",
"url": "https://github.com/ljknight"
},
{
"name": "Taylor Lehman",
"url": "https://github.com/taylorleh"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodeadmin/nodeadmin/issues"
},
"homepage": "http://nodeadmin.github.io/nodeadmin",
"dependencies": {
"bluebird": "^2.10.2",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"jsonwebtoken": "^5.4.0",
"morgan": "^1.6.1",
"mysql": "^2.9.0",
"path": "^0.12.7",
"promise-mysql": "^1.1.1",
"randomstring": "^1.1.3",
"socket.io": "^1.3.7"
},
"devDependencies": {
"chai": "^3.4.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.2",
"mocha": "^2.3.3",
"supertest": "^1.1.0"
}
}