-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "moleculer-sc",
"version": "0.9.0",
"description": "API Gateway service for Moleculer framework using SocketCluster",
"main": "lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"dev": "babel src -d lib --watch",
"example": "node examples/simple/server.js",
"build": "babel src -d lib",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiaod/moleculer-sc.git"
},
"keywords": [
"socketcluster",
"moleculer",
"microservice"
],
"author": "tiaod",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiaod/moleculer-sc/issues"
},
"homepage": "https://github.com/tiaod/moleculer-sc#readme",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"moleculer": "^0.12.8",
"nanomatch": "^1.2.9"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"p-event": "^1.3.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}