-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.85 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "glad",
"version": "2.0.0-beta.3",
"description": "A robust Node Js API framework.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"coverage": "nyc npm run test",
"test": "DEBUG=glad&&NODE_ENV=test mocha tests",
"testFile": "DEBUG=glad&&NODE_ENV=test mocha tests -g $1",
"testSpec": "npm test --- --trace-deprecation --timeout 1000000 --grep",
"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": "3.2.4",
"body-parser": "1.20.1",
"chalk": "5.3.0",
"connect-redis": "^7.1.0",
"debug": "4.3.4",
"exists-sync": "0.0.4",
"express": "4.18.2",
"express-session": "^1.17.3",
"lodash": "4.17.21",
"optimist": "^0.5.2",
"redis": "^4.6.7",
"sanitizer": "0.1.3",
"socket.io": "4.7.1",
"supports-color": "^9.4.0",
"unicode": "14.0.0"
},
"maintainers": [
{
"email": "charliesemailis@gmail.com",
"name": "Charlie Mitchell"
}
],
"contributors": [
{
"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": "4.3.7",
"latodoc": "github:smeijer/latodoc",
"mocha": "10.2.0",
"moment": "^2.18.1",
"node-fetch": "^3.3.2",
"nyc": "^15.1.0",
"pug": "^2.0.0-beta11",
"sinon": "15.2.0",
"sinon-chai": "3.7.0",
"socket.io-client": "^4.7.1",
"unirest": "^0.6.0"
}
}