forked from himulawang/island
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "island",
"version": "0.3.4",
"description": "A package suite for building microservice using TypeScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "wokim <[email protected]>",
"contributors": [
"heycalmdown <[email protected]>"
],
"scripts": {
"prepublish": "gulp build",
"postinstall": "gulp build",
"build": "gulp build",
"watch": "gulp build && gulp watch",
"clean": "gulp clean",
"test": "gulp build && DEBUG=* jasmine",
"coverage": "gulp coverage"
},
"dependencies": {
"amqplib": "0.4.2",
"bluebird": "<3.0.0",
"cls-bluebird": "^2.0.1",
"cls-mongoose": "^2.0.1",
"continuation-local-storage": "^3.2.0",
"debug": "^2.2.0",
"inversify": "2.0.0-beta.5",
"lodash": "^4.16.1",
"mongoose": "^4.6.1",
"msgpack5": "^3.4.0",
"node-uuid": "^1.4.7",
"qs": "^6.2.1",
"redis": "^2.6.2",
"reflect-metadata": "^0.1.8",
"restify": "^4.1.1",
"schema-inspector": "^1.6.6",
"socket.io": "^1.4.8",
"source-map-support": "^0.4.2",
"winston": "^2.2.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "^2.4.1",
"gulp-sourcemaps": "^1.6.0",
"remap-istanbul": "^0.6.4",
"std-mocks": "^1.0.1"
}
}