-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
67 lines (67 loc) · 1.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
{
"name": "micromono",
"version": "0.10.1",
"description": "Monolithic micro-services framework",
"main": "lib/index.js",
"bin": {
"micromono": "./bin/micromono"
},
"directories": {
"example": "example",
"lib": "lib"
},
"scripts": {
"test": "npm test",
"release": "npm run release-patch",
"release-patch": "git checkout master && mversion patch -m \"%s\" -t \"%s\" && git push origin master --tags && npm publish",
"release-minor": "git checkout master && mversion minor -m \"%s\" -t \"%s\" && git push origin master --tags && npm publish",
"release-major": "git checkout master && mversion major -m \"%s\" -t \"%s\" && git push origin master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/lsm/micromono.git"
},
"keywords": [
"microservices",
"service",
"framework",
"micro-services",
"monolithic",
"web",
"rpc",
"message",
"websockets",
"rest",
"restful",
"router",
"app",
"api"
],
"author": "lsm <liusenmiao@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lsm/micromono/issues"
},
"homepage": "https://github.com/lsm/micromono",
"dependencies": {
"callsite": "1.0.0",
"cmdenv": "0.5.0",
"debug": "2.6.8",
"engine.io": "3.1.0",
"express": "4.15.3",
"http-proxy": "1.16.2",
"ip": "1.1.5",
"jdad": "0.2.0",
"js-args-names": "0.0.2",
"jspm": "0.16.53",
"lodash.assign": "4.2.0",
"lodash.difference": "4.5.0",
"lodash.isplainobject": "4.0.6",
"lodash.merge": "4.6.0",
"lodash.toarray": "4.4.0",
"lodash.union": "4.6.0",
"msgpack-lite": "0.1.26",
"socketmq": "0.10.1",
"superpipe": "0.14.0"
}
}