-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "reactive-redux-state",
"version": "0.0.1",
"description": "Make non-UI related redux state reactive",
"main": "dist/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test rm -rf coverage && jest -c .jestrc --coverage",
"lint": "eslint 'src/**/*'",
"build": "rm -rf dist && babel src --out-dir dist --ignore __*",
"prepublish": "yarn run build"
},
"keywords": [
"electron",
"redux",
"reactive"
],
"author": "Joseph Ku <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Jawnkuin/reactive-redux-state.git"
},
"homepage": "https://github.com/Jawnkuin/reactive-redux-state",
"bugs": "https://github.com/Jawnkuin/reactive-redux-state/issues",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"peerDependencies": {
"redux": "^3.4.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.2.2",
"cross-env": "^5.0.1",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^20.0.4",
"pre-commit": "^1.2.0"
}
}