forked from pouchdb/pouchdb-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 980 Bytes
/
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
{
"name": "pouchdb-list",
"version": "1.0.6",
"main": "index.json",
"description": "A PouchDB plug-in that allows you to re-use your CouchDB list functions on the client side.",
"repository": "pouchdb/pouchdb-list",
"homepage": "http://python-pouchdb.marten-de-vries.nl/plugins.html",
"keywords": [
"pouch",
"pouchdb",
"couch",
"couchdb",
"list",
"design"
],
"license": "Apache-2.0",
"author": "Marten de Vries",
"dependencies": {
"extend": "^1.2.1",
"couchdb-objects": "^1.0.0",
"couchdb-render": "^1.0.0",
"pouchdb-req-http-query": "^1.0.0",
"promise-nodify": "^1.0.0",
"pouchdb-promise": "^0.0.0",
"pouchdb-plugin-error": "^1.0.0"
},
"devDependencies": {
"browserify": "^4.1.8",
"uglify-js": "^2.4.13",
"es3ify": "^0.1.3"
},
"scripts": {
"build-js": "mkdir -p dist && browserify index.js -g es3ify -s List -o dist/pouchdb-list.js",
"build": "npm run build-js; cd dist; uglifyjs pouchdb-list.js -mc > pouchdb-list.min.js"
}
}