forked from aohua/redux-state-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "redux-state-sync",
"version": "3.1.2",
"description": "A middleware for redux to sync state in different tabs",
"main": "dist/syncState.js",
"scripts": {
"test": "jest",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename syncState.umd.js",
"build:umd.min": "webpack --output-filename syncState.umd.min.js -p",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/AOHUA/redux-state-sync.git"
},
"keywords": [
"redux",
"react",
"localstorage",
"crosstab",
"sync",
"tabs",
"middleware"
],
"author": "AOHUA",
"license": "ISC",
"bugs": {
"url": "https://github.com/AOHUA/redux-state-sync/issues"
},
"homepage": "https://github.com/AOHUA/redux-state-sync#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^25.1.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"prettier-eslint": "^9.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"broadcast-channel": "^3.1.0"
},
"jest": {
"setupFiles": [
"./__mocks__/envMock.js"
],
"verbose": true
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}