forked from medihack/redux-pouchdb-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "redux-pouchdb-plus",
"version": "0.8.1",
"description": "Synchronize Redux store with PouchDB to have a persistent store.",
"main": "lib/index.js",
"scripts": {
"prepublish": "rimraf lib && babel src --out-dir lib",
"postinstall": "babel src --out-dir lib",
"test": "babel-tape-runner tests/*.js",
"deploy:patch": "npm version patch; npm run deploy",
"deploy:minor": "npm version minor; npm run deploy",
"deploy:major": "npm version major; npm run deploy",
"deploy": "git push origin master; npm publish"
},
"files": [
"lib/",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/medihack/redux-pouchdb-plus.git"
},
"keywords": [
"redux",
"react",
"pouchdb"
],
"author": "Kai Schlamp",
"license": "MIT",
"bugs": {
"url": "https://github.com/medihack/redux-pouchdb-plus/issues"
},
"homepage": "https://github.com/medihack/redux-pouchdb-plus#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-tape-runner": "^2.0.0",
"memdown": "^1.1.1",
"redux": "^3.0.5",
"rimraf": "^2.5.1",
"tape": "^4.4.0",
"timeout-then": "^1.0.0"
},
"peerDependencies": {
"immutable": "^3.8.1",
"pouchdb": "^6.2.0"
},
"dependencies": {
"lodash.clonedeep": "^4.1.0",
"lodash.isequal": "^4.0.0",
"transit-immutable-js": "^0.5.2",
"transit-js": "^0.8.846",
"uuid": "^3.0.0"
}
}