-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "short-revs",
"version": "1.0.3",
"description": "shorten the revisions in a pouchdb-dump stream",
"main": "index.js",
"scripts": {
"test": "mocha --grep=$GREP test/test.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test/test.js && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"bin": {
"short-revs": "bin/bin.js"
},
"dependencies": {
"base64int": "^1.1.0",
"through2": "^2.0.0"
},
"devDependencies": {
"bluebird": "^3.0.2",
"chai": "^3.4.0",
"istanbul": "^0.4.0",
"memdown": "^1.1.0",
"memorystream": "^0.3.1",
"mocha": "^2.3.3",
"pouchdb": "^5.0.0",
"pouchdb-load": "^1.4.1",
"pouchdb-replication-stream": "^1.2.5",
"stream-to-promise": "^1.0.4"
},
"keywords": [
"pouchdb",
"couchdb",
"dump",
"stream",
"shorten"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pouchdb-community/short-revs.git"
},
"bugs": {
"url": "https://github.com/pouchdb-community/short-revs/issues"
},
"homepage": "https://github.com/pouchdb-community/short-revs#readme",
"files": [
"bin"
],
"directories": {
"test": "test"
}
}