forked from glynnbird/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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": "cloudant-envoy",
"version": "0.4.4",
"description": "A mobile backend shim to Cloudant",
"contributors": [
"Stefan Kruger <[email protected]>",
"Will Holley <[email protected]>",
"Glynn Bird <[email protected]>",
"Tom Blench",
"Simon Metson",
"Mike Rhodes",
"Daniel Dent (https://www.danieldent.com/)"
],
"keywords": [
"backend",
"node",
"cloudant"
],
"license": "Apache-2.0",
"scripts": {
"start": "node ./bin/www",
"jshint": "jshint -c .jshintrc lib/",
"mocha": "./node_modules/.bin/mocha test -t 20000",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -t 30000",
"perf": "./node_modules/.bin/mocha perf_test",
"test": "bash scripts/run_couchdb_on_travis.sh; npm run mocha"
},
"dependencies": {
"async": "^2.3.0",
"basic-auth": "^1.1.0",
"body-parser": "^1.17.1",
"cf-deployment-tracker-client": "^0.1.3",
"cfenv": "^1.0.4",
"cloudant": "^1.7.1",
"compression": "^1.6.2",
"express": "^4.15.2",
"express-session": "^1.15.2",
"morgan": "^1.8.1",
"request": "^2.81.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"chance": "^1.0.6",
"istanbul": "^0.4.5",
"jshint": "2.9.4",
"mocha": "3.3.0",
"pouchdb": "6.2.0",
"pouchdb-envoy": "^0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudant-labs/envoy"
},
"bugs": {
"url": "https://github.com/cloudant-labs/envoy/issues"
},
"bin": {
"envoy": "./bin/www"
},
"engines": {
"node": ">=4.2.0"
},
"main": "app.js"
}