forked from eHealthAfrica/pouchdb-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "pouchdb-migrate",
"description": "PouchDB plugin for running migrations.",
"main": "index.js",
"scripts": {
"test": "tape test.js | tap-spec",
"build": "mkdir -p dist && browserify index.js -o dist/pouchdb.migrate.js && npm run min",
"min": "uglifyjs dist/pouchdb.migrate.js -mc > dist/pouchdb.migrate.min.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/eHealthAfrica/pouchdb-migrate.git"
},
"keywords": [
"couchdb",
"migrate",
"migrator",
"pouchdb",
"plugin"
],
"author": "Johannes J. Schmidt <[email protected]> (http://die-tf.de/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eHealthAfrica/pouchdb-migrate/issues"
},
"homepage": "https://github.com/eHealthAfrica/pouchdb-migrate#readme",
"dependencies": {
"async": "^1.5.1",
"pouchdb": "^5.0.0",
"pouchdb-extend": "^0.1.2",
"spark-md5": "^2.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"memdown": "^1.1.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.1",
"uglify-js": "^2.5.0",
"semantic-release": "^6.0.3"
},
"browser": {
"crypto": false
}
}