-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "cloudant-envoy",
"version": "0.0.0",
"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"
],
"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",
"test": "npm run jshint; npm run mocha"
},
"dependencies": {
"async": "^1.5.2",
"basic-auth": "^1.0.3",
"body-parser": "^1.14.2",
"cf-deployment-tracker-client": "^0.1.1",
"cfenv": "^1.0.3",
"cloudant": "[email protected]:cloudant/nodejs-cloudant.git",
"compression": "^1.6.2",
"events": "^1.1.0",
"express": "^4.13.3",
"morgan": "^1.6.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"chance": "^1.0.3",
"jshint": "2.9.2",
"mocha": "2.4.5",
"supertest": "1.2.0",
"pouchdb": "^5.2.1"
},
"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"
}
}