forked from hoodiehq/pouchdb-hoodie-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
71
{
"name": "pouchdb-hoodie-api",
"description": "Hoodie-like API for PouchDB",
"version": "0.0.0-placeholder",
"bugs": {
"url": "https://github.com/hoodiehq/pouchdb-hoodie-api/issues"
},
"dependencies": {
"pouchdb-extend": "^0.1.2"
},
"devDependencies": {
"browserify": "^10.2.1",
"doxx": "1.2.1",
"gh-pages-deploy": "^0.3.0",
"istanbul": "^0.3.5",
"istanbul-coveralls": "^1.0.1",
"memdown": "^1.0.0",
"mkdirp": "^0.5.0",
"pouchdb": "^3.3.0",
"rimraf": "^2.3.2",
"semantic-release": "^3.0.4",
"standard": "^3.11.1",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"uglify-js": "^2.4.20",
"zuul": "^2.1.1"
},
"gh-pages-deploy": {
"staticpath": "docs/build",
"noprompt": true
},
"homepage": "https://github.com/hoodiehq/pouchdb-hoodie-api",
"keywords": [
"data",
"first",
"hoodie",
"offline",
"pouchdb",
"storage",
"sync"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/pouchdb-hoodie-api.git"
},
"scripts": {
"build": "browserify index.js > dist/pouchdb-hoodie-api.js",
"deploydocs": "gh-pages-deploy",
"docs": "doxx --source ./ --target docs/build --template docs/template.jade --ignore coverage,bin,dist,helpers,node_modules,tests,utils,index.js",
"postbuild": "uglifyjs dist/pouchdb-hoodie-api.js -mc > dist/pouchdb-hoodie-api.min.js",
"postpublish": "semantic-release post",
"prebuild": "rimraf dist && mkdirp dist",
"predeploydocs": "./bin/authorize-push.js",
"predocs": "rimraf docs/build",
"prepublish": "semantic-release pre",
"pretest:browser:cloud": "npm run build",
"pretest:browser:local": "npm run build",
"test": "standard && npm run -s test:node | tap-spec",
"test:browser:cloud": "zuul -- tests",
"test:browser:local": "zuul --local 8080 -- tests",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"test:node": "node tests"
},
"standard": {
"ignore": [
"dist/**"
]
}
}