-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.73 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "moleculer-web",
"version": "0.11.0",
"description": "Official API Gateway service for Moleculer framework",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"demo": "node examples/index.js",
"bench": "cross-env NODE_ENV=production nodemon benchmarks/index.js",
"perf": "node --inspect --expose-gc benchmarks/index.js",
"ci": "jest --watch",
"test": "jest --coverage --forceExit",
"lint": "eslint --ext=.js src",
"lint:fix": "eslint --ext=.js --fix src",
"deps": "ncu -i --format group",
"postdeps": "npm test",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release": "npm publish --access public && git push --tags",
"release:beta": "npm publish --tag next --access public && git push --tags"
},
"keywords": [
"api-gateway",
"http-server",
"microservices",
"microservice",
"moleculer"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-web.git"
},
"author": "MoleculerJS",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sinonjs/fake-timers": "^15.1.1",
"benchmarkify": "^4.0.0",
"compression": "^1.8.1",
"coveralls": "^3.1.1",
"cross-env": "^10.1.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"express": "^5.2.1",
"fakerator": "^0.3.6",
"formidable": "^3.5.4",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-cli": "^30.3.0",
"jsonwebtoken": "^9.0.3",
"mime-types": "^3.0.2",
"mkdirp": "^3.0.1",
"moleculer": "^0.15.0",
"moleculer-repl": "^0.7.4",
"nats": "^2.29.3",
"nodemon": "^3.1.14",
"npm-check-updates": "^19.6.5",
"prettier": "^3.8.1",
"socket.io": "^4.8.3",
"spdy": "^4.0.2",
"supertest": "^7.2.2",
"webpack": "^5.105.4",
"webpack-dev-middleware": "^8.0.0"
},
"peerDependencies": {
"moleculer": "^0.15.0"
},
"dependencies": {
"@fastify/busboy": "^3.2.0",
"@types/body-parser": "^1.19.6",
"@types/qs": "^6.15.0",
"@types/serve-static": "^2.2.0",
"body-parser": "^2.2.2",
"es6-error": "^4.1.1",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"isstream": "^0.1.2",
"kleur": "^4.1.5",
"lodash": "^4.17.23",
"path-to-regexp": "^8.3.0",
"qs": "^6.15.0",
"serve-static": "^2.2.1"
},
"engines": {
"node": ">= 22.x.x"
},
"typings": "./index.d.ts",
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
}
}