-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.69 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "pouchdb-hoodie-api",
"description": "Hoodie-like API for PouchDB",
"bugs": {
"url": "https://github.com/hoodiehq/pouchdb-hoodie-api/issues"
},
"files": [
"*.js",
"!zuul.config.js",
"lib",
"helpers",
"utils",
"dist/pouchdb-hoodie-api.js",
"dist/pouchdb-hoodie-api.min.js"
],
"dependencies": {
"lie": "^3.3.0",
"pouchdb-errors": "^7.2.1",
"pouchdb-utils": "^7.2.1"
},
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"browserify": "^16.5.1",
"gh-pages-deploy": "^0.5.1",
"hoodie-zuul-config": "^2.0.0",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.1",
"mkdirp": "^1.0.4",
"mr-doc": "^3.1.2",
"mr-doc-theme-cayman": "^1.0.3",
"pouchdb-memory": "^6.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^6.3.2",
"standard": "^14.3.3",
"tap-spec": "^5.0.0",
"tape": "^4.2.0",
"uglify-js": "^3.8.1",
"zuul": "^3.9.0"
},
"gh-pages-deploy": {
"staticpath": "docs",
"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": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify index.js > dist/pouchdb-hoodie-api.js",
"postbuild": "uglifyjs dist/pouchdb-hoodie-api.js -mc > dist/pouchdb-hoodie-api.min.js",
"build-tests": "browserify node_modules/pouchdb-memory -s PouchDB > dist/pouchdb-memory.js",
"deploydocs": "gh-pages-deploy",
"predeploydocs": "./bin/authorize-push.js",
"predocs": "rimraf docs/build",
"docs": "mr-doc --source ./ --output docs --name pouchdb-hoodie-api --theme cayman --ignore docs,coverage,bin,dist,helpers,node_modules,tests,utils,index.js",
"presemantic-release": "npm run -s build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postsemantic-release": "npm run test:coverage && npm run test:coverage:upload",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"pretest:browser:cloud": "npm run -s build && npm run -s build-tests",
"test:browser:cloud": "zuul -- tests",
"pretest:browser:local": "npm run -s build && npm run -s build-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/**"
]
},
"author": "The Hoodie Community and other contributors | http://hood.ie/"
}