forked from jfmengels/micro-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.19 KB
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
{
"name": "micro-cluster",
"version": "1.0.0",
"description": "Run multiple micro servers and a front proxy at a time",
"scripts": {
"start": "gulp",
"prepublish": "gulp compile",
"pretest": "gulp compile",
"test": "xo"
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"extensions": [
"",
".js"
]
},
"files": [
"dist"
],
"bin": {
"micro-cluster": "dist/bin/micro-cluster"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-async-to-generator",
"transform-runtime"
]
},
"dependencies": {
"babel-register": "6.18.0",
"commander": "2.9.0",
"get-port": "2.1.0",
"http-proxy": "1.15.2",
"micro": "8.0.0",
"mz": "2.4.0"
},
"devDependencies": {
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-runtime": "6.18.0",
"del": "2.2.2",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-cached": "1.1.0",
"gulp-ext": "1.0.0",
"gulp-task-listing": "1.0.1",
"xo": "0.17.0"
}
}