-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "restana",
"version": "v5.0.0",
"description": "Super fast and minimalist web framework for building REST micro-services.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "npx standard",
"format": "npx standard --fix",
"test": "cross-env PORT=3000 NODE_ENV=testing npx nyc --check-coverage --lines 95 node ./node_modules/mocha/bin/mocha specs/*.test.js",
"postinstall": "node ./libs/tasks/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkyberneees/restana.git"
},
"keywords": [
"rest",
"http",
"framework",
"web",
"service"
],
"engines": {
"node": ">=10.x"
},
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkyberneees/restana/issues"
},
"files": [
"LICENSE.md",
"README.md",
"index.js",
"index.d.ts",
"libs/"
],
"homepage": "https://github.com/jkyberneees/restana#readme",
"dependencies": {
"0http": "^4.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"body-parser": "^1.20.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-jwt": "^7.7.7",
"http-cache-middleware": "^1.4.1",
"microtime": "^3.1.1",
"mocha": "^10.1.0",
"morgan": "^1.10.0",
"nyc": "^15.1.0",
"openapi-validator-middleware": "^3.2.6",
"pem": "^1.14.6",
"response-time": "^2.3.2",
"restana-swagger-validator": "^0.1.4",
"serve-static": "^1.15.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"supertest": "^6.3.3",
"winston": "^3.8.2"
}
}