forked from moleculerjs/moleculer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 4.8 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "moleculer",
"version": "0.14.11",
"description": "Fast & powerful microservices framework for Node.JS",
"main": "index.js",
"scripts": {
"bench": "node benchmark/index.js",
"ci": "jest --watch",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"demo": "node examples/index.js",
"deps": "npm-check -u",
"postdeps": "npm run lint:lock && npm test",
"dev": "nodemon dev/index.js",
"lint": "eslint --ext=.js src test/unit test/integration",
"lint:lock": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:fix": "eslint --fix --ext=.js src test/unit test/integration",
"perf": "nodemon --allow-natives-syntax benchmark/perf-runner.js",
"pperf": "node --inspect --expose-gc benchmark/perf-runner.js",
"memleak": "node benchmark/memleak-test.js",
"proto": "pbjs -t static-module -w commonjs -o src/serializers/proto/packets.proto.js src/serializers/proto/packets.proto",
"thrift": "thrift -gen js:node -o src\\serializers\\thrift src\\serializers\\thrift\\packets.thrift",
"test": "node --max-old-space-size=4096 ./node_modules/jest-cli/bin/jest.js --coverage --all --forceExit --logHeapUsage",
"test:travis": "npm test && npm run test:trans && npm run test:amqp && npm run test:nats && npm run test:ts",
"test:unit": "jest --testMatch \"**/unit/**/*.spec.js\" --coverage",
"test:int": "jest --testMatch \"**/integration/**/*.spec.js\" --coverage",
"test:amqp": "jest --testMatch \"**/transporters/amqp/**spc.js\" --runInBand",
"test:amqp10": "jest --testMatch \"**/transporters/amqp10/**spc.js\" --runInBand",
"test:nats": "jest --testMatch \"**/transporters/nats/**spc.js\" --runInBand",
"test:trans": "jest --testMatch \"**/transporters/index.spc.js\"",
"test:project": "jest --testMatch \"**/project/**/*.spec.js\"",
"test:ts": "tsd && tsc -p test/typescript/hello-world && ts-node -P test/typescript/hello-world/tsconfig.json test/typescript/hello-world/index.ts",
"release": "npm publish --access public && git push --tags",
"release:beta": "npm publish --tag next --access public && git push --tags"
},
"keywords": [
"microservice",
"microservices",
"framework",
"backend",
"messagebus",
"rpc",
"services",
"micro",
"pubsub",
"scalable",
"distributed"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer.git"
},
"funding": "https://github.com/moleculerjs/moleculer?sponsor=1",
"bin": {
"moleculer-runner": "./bin/moleculer-runner.js"
},
"author": "Icebob",
"license": "MIT",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/bunyan": "^1.8.6",
"@types/ioredis": "^4.17.4",
"@types/node": "^14.11.2",
"@types/pino": "^6.3.1",
"amqplib": "^0.6.0",
"avsc": "^5.4.22",
"benchmarkify": "^2.1.2",
"bunyan": "^1.8.14",
"coveralls": "^3.1.0",
"dd-trace": "^0.26.1",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"etcd3": "^1.0.2",
"event-loop-stats": "^1.3.0",
"fakerator": "^0.3.1",
"gc-stats": "^1.4.0",
"ioredis": "^4.17.3",
"jaeger-client": "^3.18.1",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"joi": "^17.2.1",
"kafka-node": "^5.0.0",
"lockfile-lint": "^4.3.7",
"log4js": "^6.3.0",
"moleculer-repl": "^0.6.4",
"mqtt": "^4.2.1",
"msgpack5": "^4.2.1",
"nats": "^1.4.12",
"node-nats-streaming": "^0.0.51",
"nodemon": "^2.0.4",
"notepack.io": "^2.3.0",
"npm-check": "^5.9.2",
"pino": "^6.6.1",
"protobufjs": "^6.10.1",
"redlock": "^4.1.0",
"rhea-promise": "^1.0.0",
"supertest": "^5.0.0",
"thrift": "^0.12.0",
"ts-node": "^9.0.0",
"tsd": "^0.13.1",
"typescript": "^4.0.3",
"v8-natives": "^1.2.0",
"winston": "^3.3.3",
"winston-context": "^0.0.7"
},
"dependencies": {
"args": "^5.0.1",
"es6-error": "^4.1.1",
"eventemitter2": "^6.4.3",
"fastest-validator": "^1.7.0",
"fn-args": "^5.0.0",
"glob": "^7.1.6",
"ipaddr.js": "^2.0.0",
"kleur": "^4.1.2",
"lodash": "^4.17.20",
"lru-cache": "^6.0.0",
"node-fetch": "^2.6.1"
},
"engines": {
"node": ">= 10.x.x"
},
"types": "./index.d.ts",
"tsd": {
"directory": "test/typescript/tsd"
},
"jest": {
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/",
"/test/typescript/",
"/test/unit/utils.js",
"/src/serializers/proto/",
"/src/serializers/thrift/"
],
"transform": {},
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
]
}
}