-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "restana",
"version": "v5.1.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.3.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"body-parser": "^2.2.0",
"chai": "^6.0.1",
"cross-env": "^10.0.0",
"express": "^5.1.0",
"express-jwt": "^8.5.1",
"http-cache-middleware": "^1.4.1",
"microtime": "^3.1.1",
"mocha": "^11.7.2",
"morgan": "^1.10.1",
"nyc": "^17.1.0",
"openapi-validator-middleware": "^3.2.6",
"pem": "^1.14.8",
"response-time": "^2.3.4",
"restana-swagger-validator": "^1.0.0",
"serve-static": "^2.2.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"supertest": "^7.1.4",
"winston": "^3.17.0"
}
}