forked from gr2m/spawn-pouchdb-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "spawn-pouchdb-server",
"description": "Configurable per-app pouchdb-server as a drop-in replacement for CouchDB",
"main": "index.js",
"scripts": {
"test": "standard && nyc npm run -s test:node",
"test:node": "node test | tap-spec",
"test:coverage": "nyc report",
"test:coverage:upload": "npm run -s test:coverage -- --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postsemantic-release": "npm run -s test:coverage:upload"
},
"repository": {
"type": "git",
"url": "https://github.com/gr2m/spawn-pouchdb-server.git"
},
"keywords": [
"couchdb",
"pouchdb"
],
"author": "Gregor Martynus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gr2m/spawn-pouchdb-server/issues"
},
"homepage": "https://github.com/gr2m/spawn-pouchdb-server#readme",
"dependencies": {
"async": "^2.0.1",
"cross-spawn": "^5.0.0",
"deep-property": "^1.1.0",
"lodash": "^4.0.1",
"mkdirp": "^0.5.1",
"nyc": "^8.1.0",
"pouchdb-server": "^1.0.1",
"require-relative": "^0.8.7",
"tmp": "0.0.29"
},
"devDependencies": {
"coveralls": "^2.11.4",
"jsondown": "^0.1.1",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"semantic-release": "^6.2.0",
"standard": "^8.1.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.0"
}
}