-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.44 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",
"version": "0.0.0-semantically-released",
"description": "Hoodie Task core module",
"main": "server/index.js",
"browser": "client/index.js",
"scripts": {
"pretest": "standard",
"test": "standard",
"start": "node example/",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-task.git"
},
"keywords": [
"hoodie",
"offlinefirst",
"task",
"sync",
"data"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-task/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-task#readme",
"dependencies": {
"@hoodie/task-client": "https://github.com/hoodiehq/hoodie-task-client.git",
"@hoodie/task-server": "https://github.com/hoodiehq/hoodie-task-server.git",
"pouchdb-adapter-memory": "^6.1.1",
"pouchdb-core": "^6.1.1",
"pouchdb-mapreduce": "^6.1.1",
"pouchdb-replication": "^6.1.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.5.0",
"hapi": "^15.0.1",
"humble-localstorage": "^1.4.2",
"inert": "^4.0.0",
"memdown": "^1.1.2",
"mocha": "^3.0.0",
"random-string": "^0.1.2",
"semantic-release": "^6.2.1",
"standard": "^8.0.0"
}
}