-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "@hoodie/store-server-api",
"description": "API to manage databases, access and replications, backed by PouchDB",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-store-server-api.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-api/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-store-server-api#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"lolex": "^2.1.2",
"nock": "^9.0.19",
"nyc": "^11.0.0",
"pouchdb-adapter-http": "^6.1.0",
"pouchdb-adapter-memory": "^6.1.0",
"pouchdb-core": "^6.1.0",
"pouchdb-replication": "^6.1.0",
"proxyquire": "^2.0.0",
"semantic-release": "^12.2.2",
"standard": "^11.0.0",
"tap": "^11.0.0"
},
"dependencies": {
"lodash": "^4.17.3",
"mkdirp": "^0.5.1",
"pouchdb-hoodie-api": "^2.0.0",
"request": "^2.79.0",
"to-id": "^1.0.5"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development"
}