-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@hoodie/store-server",
"description": "CouchDB API for data persistence and offline sync",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "standard",
"test": "nyc tap 'test/{unit,integration}/**/*-test.js'",
"start": "bin/server",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postsemantic-release": "npm run coverage",
"postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-store-server.git"
},
"keywords": [
"hapi",
"plugin",
"couchdb",
"pouchdb",
"hoodie"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-store-server/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-store-server#readme",
"devDependencies": {
"coveralls": "^2.12.0",
"greenkeeper-postpublish": "^1.0.0",
"hapi": "^16.1.0",
"memdown": "^1.1.2",
"nock": "^9.0.9",
"nyc": "^10.1.2",
"pouchdb-adapter-http": "^6.1.2",
"pouchdb-adapter-memory": "^6.1.2",
"pouchdb-core": "^6.1.2",
"pouchdb-replication": "^6.1.2",
"proxyquire": "^1.7.11",
"semantic-release": "^6.0.3",
"standard": "^9.0.1",
"tap": "^10.3.0"
},
"dependencies": {
"@gr2m/hapi-to-express": "1.2.1-includes-6",
"@hoodie/store-server-api": "^2.0.0",
"boom": "^4.0.0",
"express": "^4.15.2",
"express-pouchdb": "^2.3.6",
"h2o2": "^5.0.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pouchdb-hoodie-api": "^2.0.0",
"request": "^2.80.0",
"to-id": "^1.0.5"
},
"publishConfig": {
"access": "public"
}
}