-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "@hoodie/client",
"version": "0.0.0-development",
"description": "Client API for the Hoodie server",
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-client/issues"
},
"dependencies": {
"@hoodie/account-client": "^6.0.0",
"@hoodie/connection-status": "^4.0.1",
"@hoodie/log": "^2.1.0",
"@hoodie/store-client": "^8.1.0",
"lie": "^3.0.1",
"lodash": "^4.11.1",
"nets": "^3.2.0",
"pouchdb-doc-api": "^1.0.0"
},
"devDependencies": {
"browserify": "^16.0.0",
"istanbul": "^0.4.1",
"istanbul-coveralls": "^1.0.3",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.0",
"pouchdb-adapter-http": "^6.1.2",
"pouchdb-adapter-memory": "^6.0.7",
"pouchdb-core": "^6.0.7",
"pouchdb-replication": "^6.0.7",
"proxyquire": "^1.7.6",
"rimraf": "^2.4.3",
"semantic-release": "^15.13.30",
"simple-mock": "^0.8.0",
"standard": "^11.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.4.0",
"uglify-js": "^3.0.0",
"uglifyify": "^4.0.1"
},
"homepage": "https://github.com/hoodiehq/hoodie-client#readme",
"keywords": [
"hoodie",
"nobackend",
"offlinefirst"
],
"license": "Apache-2.0",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-client.git"
},
"scripts": {
"build": "npm-run-all -p build:raw:*",
"build:dev": "npm-run-all prebuild build:raw:dev",
"disabled-build:min": "npm-run-all prebuild build:raw:min",
"build:raw:dev": "browserify -s Hoodie index.js -o dist/hoodie.js",
"disabled-build:raw:min": "browserify -s Hoodie -g uglifyify index.js | uglifyjs -c -o dist/hoodie.min.js",
"prebuild": "rimraf dist && mkdirp dist",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"test:node": "node tests"
}
}