-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
68 lines (68 loc) · 1.78 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
{
"name": "compoxure",
"version": "0.3.35",
"description": "Composition proxy middleware for Express, allows for composition of microservices using declarations and caching.",
"main": "index.js",
"scripts": {
"start": "node example/index.js",
"lint": "jshint .",
"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 90"
},
"repository": {
"type": "git",
"url": "[email protected]:tes/compoxure.git"
},
"keywords": [
"composition",
"proxy"
],
"author": "TES Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/tes/compoxure/issues"
},
"homepage": "https://github.com/tes/compoxure",
"dependencies": {
"parxer": "latest",
"reliable-get": "latest",
"accepts": "^1.1.0",
"async": "^0.9.0",
"blanket": "^1.1.6",
"body-parser": "^1.6.7",
"connect": "^3.1.0",
"connect-route": "^0.1.4",
"cookie-parser": "^1.3.2",
"hogan.js": "^3.0.2",
"html-entities": "^1.1.1",
"http-status-codes": "^1.0.2",
"lodash": "~2.4.1",
"morgan": "^1.2.1",
"request": "^2.39.0",
"serve-static": "^1.8.0",
"sf": "^0.1.7",
"through": "^2.3.4",
"ware": "^1.2.0"
},
"devDependencies": {
"cheerio": "^0.17.0",
"coveralls": "^2.11.1",
"expect.js": "~0.3.1",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "~1.18.2",
"mocha-lcov-reporter": "0.0.1",
"node-mocks-http": "^1.0.4",
"node-uuid": "^1.4.1",
"precommit-hook": "^1.0.7"
},
"config": {
"blanket": {
"pattern": "src"
}
},
"pre-commit": [
"lint",
"test"
]
}