forked from carolineBda/compoxure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "compoxure",
"version": "0.2.18",
"description": "Composition proxy middleware for Express, allows for composition of microservices using declarations and caching.",
"main": "index.js",
"scripts": {
"coveralls": "NODE_ENV=test mocha --require blanket --reporter mocha-lcov-reporter test/unit/* test/acceptance/* | ./node_modules/coveralls/bin/coveralls.js",
"test": "istanbul cover _mocha -- -R spec test/unit/* test/acceptance/* && istanbul check-coverage --statements 80"
},
"repository": {
"type": "git",
"url": "[email protected]:TSLEducation/compoxure.git"
},
"keywords": [
"composition",
"proxy"
],
"author": "TES Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/TSLEducation/compoxure/issues"
},
"homepage": "https://github.com/TSLEducation/compoxure",
"dependencies": {
"accepts": "^1.1.0",
"async": "^0.9.0",
"blanket": "^1.1.6",
"body-parser": "^1.6.7",
"circuit-breaker-js": "0.0.1",
"connect": "^3.1.0",
"connect-route": "^0.1.4",
"cookie-parser": "^1.3.2",
"hogan.js": "^3.0.2",
"htmlparser2": "^3.7.3",
"http-status-codes": "^1.0.2",
"lodash": "~2.4.1",
"morgan": "^1.2.1",
"redis": "^0.11.0",
"request": "^2.39.0",
"serve-static": "^1.4.1",
"sf": "^0.1.7",
"through": "^2.3.4"
},
"devDependencies": {
"cheerio": "^0.17.0",
"coveralls": "^2.11.1",
"mocha-lcov-reporter": "0.0.1",
"expect.js": "~0.3.1",
"jshint": "^2.5.1",
"mocha": "~1.18.2",
"node-mocks-http": "^1.0.4",
"node-uuid": "^1.4.1",
"istanbul": "^0.3.2",
"pre-commit": "0.0.9"
},
"config": {
"blanket": {
"pattern": "src"
}
},
"pre-commit": [
"test"
]
}