forked from moleculerjs/moleculer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.72 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
{
"name": "moleculer",
"version": "0.13.8",
"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 test",
"dev": "nodemon --inspect dev/index.js",
"lint": "eslint --ext=.js src test",
"lint:fix": "eslint --fix --ext=.js src test",
"perf": "nodemon --allow-natives-syntax benchmark/perf-runner.js",
"pperf": "node --inspect --expose-gc benchmark/perf-runner.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": "jest --coverage --no-cache",
"test:travis": "npm test && npm run test:trans && npm run test:amqp && npm run test:ts",
"test:unit": "jest --testMatch \"**/unit/**spec.js\" --coverage --no-cache",
"test:int": "jest --testMatch \"**/integration/**spec.js\" --coverage --no-cache",
"test:amqp": "jest --testMatch \"**/transporters/amqp/**spc.js\" --runInBand",
"test:trans": "jest --testMatch \"**/transporters/index.spc.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": [
"microservices",
"microservice",
"rpc",
"services",
"micro",
"pubsub",
"scalable"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer.git"
},
"bin": {
"moleculer-runner": "./bin/moleculer-runner.js"
},
"author": "Icebob",
"license": "MIT",
"devDependencies": {
"@types/bunyan": "1.8.6",
"@types/node": "11.12.2",
"@types/pino": "5.8.6",
"amqplib": "0.5.3",
"avsc": "5.4.7",
"benchmarkify": "2.1.1",
"bunyan": "1.8.12",
"coveralls": "3.0.3",
"dotenv": "6.2.0",
"eslint": "5.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-security": "1.4.0",
"fakerator": "0.3.0",
"ioredis": "4.9.0",
"jest": "24.5.0",
"jest-cli": "24.5.0",
"joi": "14.3.1",
"kafka-node": "4.0.4",
"lolex": "3.1.0",
"moleculer-repl": "0.5.7",
"mqtt": "2.18.8",
"msgpack5": "4.2.1",
"nats": "1.2.6",
"node-nats-streaming": "0.0.51",
"nodemon": "1.18.10",
"notepack.io": "2.2.0",
"npm-check": "5.9.0",
"pino": "5.12.0",
"protobufjs": "6.8.8",
"redlock": "^3.1.2",
"thrift": "0.12.0",
"ts-node": "8.0.3",
"tsd": "0.7.1",
"typescript": "3.4.1",
"v8-natives": "1.1.0",
"winston": "3.2.1",
"winston-context": "0.0.7"
},
"dependencies": {
"args": "^5.0.1",
"bluebird": "^3.5.3",
"chalk": "^2.4.2",
"es6-error": "^4.1.1",
"eventemitter2": "^5.0.1",
"fastest-validator": "^0.6.17",
"glob": "^7.1.3",
"ipaddr.js": "^1.9.0",
"lodash": "^4.17.11",
"lru-cache": "^5.1.1"
},
"engines": {
"node": ">= 6.x.x"
},
"tonicExampleFilename": "docs/runkit/simple.js",
"types": "./index.d.ts",
"tsd": {
"directory": "test/typescript/tsd"
},
"jest": {
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/",
"/test/typescript/",
"/test/unit/utils.js"
],
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
]
}
}