forked from moleculerjs/moleculer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.83 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
{
"name": "moleculer",
"version": "0.12.3",
"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",
"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",
"test": "jest --coverage --no-cache",
"test:unit": "jest --testMatch \"**/unit/**spec.js\" --coverage --no-cache",
"test:int": "jest --testMatch \"**/integration/**spec.js\" --coverage --no-cache",
"test:amqp": "jest --testMatch \"**/integration/amqp/**spc.js\" --runInBand"
},
"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": "Ice Services",
"license": "MIT",
"devDependencies": {
"amqplib": "0.5.2",
"avsc": "5.2.3",
"benchmarkify": "2.1.0",
"bunyan": "1.8.12",
"coveralls": "3.0.0",
"dotenv": "5.0.1",
"eslint": "4.19.1",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-security": "^1.4.0",
"fakerator": "0.3.0",
"ioredis": "3.2.2",
"jest": "22.4.3",
"jest-cli": "22.4.3",
"joi": "11.3.4",
"kafka-node": "2.6.0",
"lolex": "2.3.2",
"moleculer-repl": "0.4.0",
"mqtt": "2.17.0",
"msgpack5": "4.0.2",
"nats": "0.8.4",
"node-nats-streaming": "0.0.28",
"nodemon": "1.17.3",
"npm-check": "5.7.0",
"pino": "4.16.1",
"protobufjs": "6.8.6",
"v8-natives": "1.1.0",
"winston": "2.4.2",
"winston-context": "0.0.7"
},
"dependencies": {
"args": "4.0.0",
"bluebird": "3.5.1",
"chalk": "2.4.1",
"es6-error": "4.1.1",
"eventemitter2": "5.0.1",
"fastest-validator": "0.6.6",
"glob": "7.1.2",
"ipaddr.js": "1.7.0",
"lodash": "4.17.10",
"node-object-hash": "1.3.0"
},
"engines": {
"node": ">= 6.x.x"
},
"tonicExampleFilename": "docs/runkit/simple.js",
"typings": "./index.d.ts",
"jest": {
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/",
"/test/unit/utils.js"
],
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
]
}
}