-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "restnio",
"version": "3.7.18",
"description": "Node implementation of RestNio, the easy peasy API system.",
"main": "index.js",
"scripts": {
"test": "mocha ./test/ --recursive",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RestNio/RestNio.js.git"
},
"keywords": [
"api",
"websocket",
"http",
"server",
"rest"
],
"author": "7kasper",
"license": "MIT",
"bugs": {
"url": "https://github.com/RestNio/RestNio.js/issues"
},
"homepage": "https://github.com/RestNio/RestNio.js#readme",
"dependencies": {
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.19",
"mime-types": "^2.1.27",
"ms": "^2.1.2",
"parse-multipart-data": "^1.0.0",
"qs": "^6.9.4",
"query-string": "^6.13.1",
"uuid": "^3.4.0",
"ws": "^6.2.2"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "^13.2.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
}
}