-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
57 lines (57 loc) · 1.36 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",
"version": "1.0.0-rc.3",
"description": "sync store state to pouchdb",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write --no-semi --single-quote src/** tests/**",
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepare": "npm run clean && npm run build",
"test": "cross-env BABEL_ENV=testing jest"
},
"files": [
"lib/",
"src/",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vicentedealencar/redux-pouchdb"
},
"keywords": [
"redux",
"react-component",
"pouchdb"
],
"author": "Vicente de Alencar",
"license": "MIT",
"bugs": {
"url": "https://github.com/vicentedealencar/redux-pouchdb/issues"
},
"homepage": "https://github.com/vicentedealencar/redux-pouchdb",
"dependencies": {
"@babel/runtime": "^7.7.4",
"ramda": "^0.26.1",
"timeout-then": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"memdown": "^5.1.0",
"pouchdb": "^7.1.1",
"prettier": "^1.19.1",
"redux": "^4.0.4",
"rimraf": "^3.0.0",
"should": "^13.2.3"
},
"peerDependencies": {
"pouchdb": "*",
"redux": "*"
}
}