-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@hoodie/task-client",
"version": "0.0.0-semantically-released",
"description": "client api for asynchronous task queue, using PouchDB for sync",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify -s Task index.js > dist/hoodie-task-client.js",
"pretest": "standard",
"test": "standard",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"test:node": "node tests",
"semantic-release": "semantic-release",
"postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-task-client.git"
},
"keywords": [
"hoodie",
"task",
"pouchdb",
"couchdb"
],
"author": {
"name": "The Hoodie Community and other contributors | http://hood.ie/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-task-client/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-task-client#readme",
"devDependencies": {
"browserify": "^14.0.0",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.3",
"memdown": "^1.1.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.4",
"semantic-release": "^11.0.2",
"simple-mock": "^0.8.0",
"standard": "^10.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"dependencies": {
"@hoodie/store-client": "^5.0.12"
},
"version": "0.0.0-development"
}