forked from pouchdb-community/pouchdb-adapter-cordova-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 928 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
{
"name": "pouchdb-adapter-cordova-sqlite",
"version": "2.0.2",
"description": "PouchDB adapter using Cordova SQLite Plugin as its data store.",
"main": "./lib/index.js",
"keywords": [],
"author": "Dale Harvey <dale@arandomurl.com>",
"license": "Apache-2.0",
"repository": "https://github.com/nolanlawson/pouchdb-adapter-cordova-sqlite",
"files": [
"lib",
"dist"
],
"scripts": {
"prepublish": "npm run build",
"build": "mkdirp dist && browserify -s PouchAdapterCordovaSqlite -p bundle-collapser/plugin . > dist/pouchdb.cordova-sqlite.js && uglifyjs -mc < dist/pouchdb.cordova-sqlite.js > dist/pouchdb.cordova-sqlite.min.js",
"test": "standard"
},
"dependencies": {
"pouchdb-adapter-websql-core": "^6.1.1"
},
"devDependencies": {
"browserify": "^14.0.0",
"bundle-collapser": "^1.2.1",
"mkdirp": "^0.5.1",
"standard": "^7.1.2",
"uglify-js": "^2.7.0"
}
}