-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 977 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
{
"name": "@piotr-cz/redux-broadcast-middleware",
"version": "1.0.3",
"description": "Sync redux state using BroadcastChannel",
"source": "src/index.js",
"main": "dist/redux-broadcast-middleware.js",
"module": "dist/redux-broadcast-middleware.es.js",
"repository": {
"type": "git",
"url": "https://github.com/piotr-cz/redux-broadcast-middleware.git"
},
"author": "Piotr Konieczny <[email protected]> (https://www.piotr.cz)",
"license": "MIT",
"homepage": "https://github.com/piotr-cz/redux-broadcast-middleware",
"keywords": [
"redux",
"crosstab",
"sync",
"middleware",
"BroadcastChannel"
],
"scripts": {
"build": "microbundle --format=es,cjs --target=web",
"npmpublish": "npm publish --access=public",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"microbundle": "^0.14.2"
},
"peerDependencies": {
"redux-persist": ">=3.5.0"
}
}