forked from pouchdb-community/worker-pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.83 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
{
"name": "worker-pouch",
"version": "2.1.0",
"description": "PouchDB over a web worker",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/worker-pouch.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"worker",
"couch",
"couchdb"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/worker-pouch/issues"
},
"scripts": {
"prepublish": "npm run build",
"build-workerified-code": "node bin/build.js",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib test/test.js",
"test": "npm run jshint && npm run test-browser",
"build": "mkdirp dist && run-scripts build-workerified-code browserify min",
"browserify": "browserify -s workerPouch -p bundle-collapser/plugin . | ./bin/es3ify.js | derequire > dist/pouchdb.worker-pouch.js",
"min": "UGLIFY=1 browserify -s workerPouch -p bundle-collapser/plugin . | ./bin/es3ify.js | derequire | uglifyjs -mc > dist/pouchdb.worker-pouch.min.js",
"dev": "npm run build-workerified-code && browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "./bin/dev-server.js",
"build-custom-worker": "browserify test/custom-api/worker.js --debug > test/custom-api/worker-bundle.js",
"test-custom-local": "run-scripts build-workerified-code build-custom-worker && zuul --ui mocha-bdd --local 9000 --no-coverage test/custom-api/test.js",
"test-custom": "run-scripts build-workerified-code build-custom-worker && zuul --ui mocha-bdd --phantom --no-coverage test/custom-api/test.js"
},
"dependencies": {
"argsarray": "0.0.1",
"blob-util": "^1.1.1",
"debug": "^2.1.3",
"inherits": "^2.0.1",
"js-extend": "^1.0.1",
"pouchdb-adapter-http": "6.2.0",
"pouchdb-adapter-idb": "6.2.0",
"pouchdb-binary-util": "^1.0.0",
"pouchdb-core": "6.2.0",
"pouchdb-mapreduce": "6.2.0",
"pouchdb-promise": "6.2.0",
"pouchdb-replication": "6.2.0"
},
"devDependencies": {
"bluebird": "^2.9.24",
"browserify": "14.1.0",
"bundle-collapser": "1.2.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"corsproxy": "^0.2.14",
"derequire": "^2.0.0",
"es3ify": "^0.1.3",
"es5-shim": "^4.1.1",
"http-server": "^0.8.5",
"jshint": "2.8.0",
"lodash.debounce": "4.0.8",
"mkdirp": "^0.5.0",
"mocha": "^2.3.3",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb-browser": "6.2.0",
"pouchdb-http-proxy": "^0.10.4",
"pouchdb-memory": "6.0.0",
"request": "^2.36.0",
"run-scripts": "^0.4.0",
"sauce-connect-launcher": "^0.11.1",
"selenium-standalone": "6.4.1",
"uglify-js": "^2.4.13",
"watch-glob": "0.1.3",
"wd": "^0.2.21",
"zuul": "^3.10.1"
},
"files": [
"lib",
"dist",
"client",
"worker"
]
}