-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.76 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.76 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "glad",
"version": "1.2.1",
"description": "A robust Node Js API framework.",
"main": "index.js",
"engines": {
"node": ">=6.5"
},
"scripts": {
"test": "DEBUG=glad&&NODE_ENV=test mocha tests",
"cover": "istanbul cover _mocha tests",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"install_mock": "(cd tests/mock-app && npm install)"
},
"author": "Charlie Mitchell",
"license": "MIT",
"bugs": {
"email": "charliesemailis@gmail.com",
"url": "http://github.com/charliemitchell/glad"
},
"dependencies": {
"async": "^2.1.4",
"bluebird": "^3.4.7",
"body-parser": "1.12.0",
"chalk": "^1.1.3",
"debug": "^3.0.1",
"exists-sync": "0.0.4",
"express": "^4.14.1",
"express-session": "1.15.2",
"express-sessions": "^1.0.6",
"lodash": "^4.17.4",
"optimist": "^0.6.1",
"redis": "2.6.3",
"sanitizer": "^0.1.3",
"socket.io": "^1.7.2",
"unicode": ">= 0.3.1"
},
"maintainers": [
{
"email": "charliesemailis@gmail.com",
"name": "Charlie Mitchell"
}
],
"contributers": [
{
"email": "charliesemailis@gmail.com",
"name": "Charlie Mitchell"
}
],
"homepage": "https://github.com/gladjs/glad",
"readme": "README.md",
"keywords": [
"glad",
"express",
"rest",
"api",
"mvc",
"framework"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gladjs/glad.git"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.18.1",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"unirest": "^0.5.1",
"pug": "^2.0.0-beta11"
}
}