-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
94 lines (94 loc) · 2.51 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "moleculer-web",
"version": "0.10.7",
"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": "npm-check -u",
"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": {
"@sinonjs/fake-timers": "^8.0.1",
"benchmarkify": "^3.0.0",
"compression": "^1.7.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"fakerator": "^0.3.4",
"formidable": "^1.2.6",
"jest": "^27.2.5",
"jest-cli": "^27.2.5",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.33",
"mkdirp": "^1.0.4",
"moleculer": "^0.14.17",
"moleculer-repl": "^0.7.0",
"nats": "^2.2.0",
"nodemon": "^2.0.13",
"socket.io": "^4.7.1",
"spdy": "^4.0.2",
"supertest": "^6.1.6",
"webpack": "^5.88.1",
"webpack-dev-middleware": "^5.2.1"
},
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.14.0"
},
"dependencies": {
"@fastify/busboy": "^1.0.0",
"body-parser": "^1.19.0",
"es6-error": "^4.1.1",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"isstream": "^0.1.2",
"kleur": "^4.1.4",
"lodash": "^4.17.21",
"path-to-regexp": "^3.1.0",
"qs": "^6.11.0",
"serve-static": "^1.14.1"
},
"engines": {
"node": ">= 10.x.x"
},
"typings": "./index.d.ts",
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
}
}