-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
70 lines (70 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@hoodie/store-client",
"version": "0.0.0-development",
"description": "Hoodie Client for data persistence & offline sync",
"main": "index.js",
"files": [
"index.js",
"lib",
"dist"
],
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify -s Store index.js > dist/hoodie-store-client.js",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"test:browser:local": "zuul --local 8080 -- tests",
"test:browser:cloud": "zuul -- tests",
"test:node": "node tests",
"presemantic-release": "npm run -s build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-store-client.git"
},
"keywords": [
"hoodie",
"offlinefirst",
"storage",
"pouchdb",
"sync",
"data"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-store-client/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-store-client#readme",
"devDependencies": {
"browserify": "^13.0.0",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.3",
"lolex": "^1.5.1",
"memdown": "^1.1.0",
"mkdirp": "^0.5.1",
"pouchdb-adapter-memory": "^6.0.7",
"pouchdb-core": "^6.0.7",
"pouchdb-replication": "^6.0.7",
"rimraf": "^2.4.4",
"semantic-release": "^6.3.6",
"simple-mock": "^0.7.0",
"standard": "^8.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"zuul": "^3.9.0"
},
"dependencies": {
"hoodie-zuul-config": "^2.0.0",
"lie": "^3.1.1",
"lodash": "^4.6.0",
"pouchdb-errors": "6.3.3",
"pouchdb-utils": "6.3.3"
},
"publishConfig": {
"access": "public"
}
}