-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "@getstation/redux-broadcast-actions",
"version": "1.1.0",
"description": "A tiny middleware for redux to share actions through BroadcastChannel API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest .",
"build": "rimraf lib && tsc --outDir lib",
"lint": "eslint ./{src,tests}/ --ext .js,.ts",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/getstation/redux-broadcast-actions.git"
},
"keywords": [
"redux",
"react",
"sync",
"middleware",
"browser-extension",
"chrome-extension",
"firefox-extension",
"web-extension"
],
"author": "Joël Charles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/getstation/redux-broadcast-actions/issues"
},
"homepage": "https://github.com/getstation/redux-broadcast-actions#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}