-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 739 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 739 Bytes
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
{
"name": "electron-redux-immutable",
"version": "0.0.1",
"description": "Redux middleware for electron to share immutable store between main and renderer processes",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nikorablin/electron-redux-immutable"
},
"author": "Nik Korablin <nikorablin@gmail.com>",
"keywords": ["electron", "redux", "immutable", "ipc"],
"license": "MIT",
"private": false,
"devDependencies": {
"electron": "^1.8.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0"
},
"dependencies": {
"immutable": "^3.8.2"
}
}