-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.97 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
68
69
70
71
72
{
"name": "msb",
"version": "2.0.1-alpha",
"description": "A framework to simplify the implementation of an event-bus oriented microservices architecture",
"license": "MIT",
"main": "index.js",
"bin": {
"msb": "./bin/msb",
"msb-save": "./bin/msb-save"
},
"repository": {
"type": "git",
"url": "https://github.com/tcdl/msb.git"
},
"scripts": {
"build": "tsc",
"coveralls": "NODE_ENV=test nyc mocha | coveralls",
"cs": "tslint lib/{,**/,**/**/}*.ts test/{,**/,**/**/}*.ts index.ts -t stylish",
"fix:cs": "tslint lib/{,**/,**/**/}*.ts test/{,**/,**/**/}*.ts index.ts -t stylish --fix",
"test": "npm run cs && npm run test:types && npm run test:unit && npm run test:functional && npm run test:integration",
"test:functional": "NODE_ENV=test mocha ./test/functional/",
"test:integration": "NODE_ENV=test mocha ./test/integration/",
"test:types": "tsc --noEmit",
"test:unit": "NODE_ENV=test mocha ./test/unit/"
},
"dependencies": {
"amqp-coffee": "0.1.30",
"async": "2.1.5",
"debug": "^3.1.0",
"lodash.clone": "^4.5.0",
"lodash.get": "4.4.2",
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.last": "^3.0.0",
"lodash.merge": "^4.6.0",
"lodash.union": "^4.6.0",
"minimist": "1.2.0",
"split": "1.0.0",
"tv4": "1.2.7"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/core-js": "0.9.35",
"@types/mocha": "2.2.35",
"@types/node": "6.0.46",
"@types/sinon": "^1.16.34",
"@types/tv4": "1.2.28",
"chai": "3.5.0",
"coveralls": "2.11.16",
"lodash.uniq": "^4.5.0",
"mocha": "3.2.0",
"nyc": "^10.1.2",
"simple-mock": "0.7.3",
"sinon": "^2.0.0",
"ts-node": "^2.0.0",
"tslint": "4.5.1",
"typescript": "2.2.1"
},
"engines": {
"node": ">=4"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"text-lcov"
]
}
}