-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "redux-electron-ipc",
"version": "1.2.0",
"description": "Redux Electron IPC Middleware",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"build": "webpack && cross-env WEBPACK_ENV=production webpack",
"dev": "webpack --watch"
},
"files": [
"dist"
],
"keywords": [
"redux",
"electron",
"ipc",
"middleware"
],
"author": "Mario Tacke <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mariotacke/redux-electron-ipc.git"
},
"bugs": {
"url": "https://github.com/mariotacke/redux-electron-ipc/issues"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"webpack": "^1.13.1"
}
}