-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "moleculer-ws",
"version": "1.0.0",
"description": "Websocket gateway for moleculer",
"main": "dist/src/index.js",
"scripts": {
"clean": "rimraf dist/*",
"compile": "yarn clean && tsc",
"dev": "nodemon -e ts --exec \"yarn compile\"",
"testing": "yarn clean && tsc && node dist/src/testing/index.js",
"runner": "yarn clean && tsc && moleculer-runner --repl --config dist/src/testing/moleculer.dev.config.js dist/src/testing/services",
"debug": "yarn clean && tsc && node --inspect dist/src/index.js",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"release": "yarn clean && tsc && yarn test && typedoc --theme minimal --out ./docs ./src"
},
"engines": {
"node": ">=8.9.1"
},
"author": "Colonelbundy <colonelbundy@gmail.com>",
"license": "MIT",
"dependencies": {
"es6-error": "^4.1.1",
"eventemitter2": "^5.0.1",
"lodash": "^4.17.4",
"moleculer": "^0.12.1",
"moleculer-decorators": "^1.0.14",
"nanomatch": "^1.2.7",
"nanotimer": "^0.3.15",
"shortid": "^2.2.8",
"uws": "^9.14.0"
},
"devDependencies": {
"@types/async": "^2.0.47",
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.2",
"@types/http-status": "^0.2.30",
"@types/lodash": "^4.14.100",
"@types/mocha": "^2.2.48",
"@types/node": "^9.3.0",
"@types/uws": "^0.13.1",
"@types/ws": "^4.0.1",
"chai": "^4.1.2",
"ioredis": "^3.2.2",
"mocha": "^5.0.4",
"moleculer-repl": "^0.4.0",
"moleculer-ws-client": "colonelbundy/moleculer-ws-client",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"ts-node": "^5.0.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"ws": "^5.0.0"
}
}