This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
forked from carolineBda/compoxure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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": "2.1.31",
"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 && istanbul check-coverage --statements 90",
"precommit": "npm run lint && npm test"
},
"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": {
"accepts": "^1.1.0",
"async": "^0.9.0",
"body-parser": "^1.15.2",
"connect-query": "^0.2.0",
"cookie-parser": "^1.3.2",
"html-entities": "^1.1.1",
"htmlparser2": "^3.9.2",
"http-status-codes": "^1.0.2",
"lodash": "^3.10.1",
"morgan": "^1.2.1",
"parxer": "^2.0.6",
"reliable-get": "^3.1.0",
"request": "^2.39.0",
"serve-static": "^1.8.0",
"ware": "^1.2.0"
},
"devDependencies": {
"blanket": "^1.1.6",
"cheerio": "^0.17.0",
"coveralls": "^2.11.1",
"expect.js": "~0.3.1",
"express": "^4.12.3",
"express-device": "^0.3.11",
"husky": "^0.11.5",
"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"
},
"config": {
"blanket": {
"pattern": "src"
}
}
}