-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "redux-store-manager",
"version": "0.1.9",
"description": "Declaratively code-split your redux store and make containers own entire redux flow using redux-store-manager",
"main": "index.js",
"module": "es/index.js",
"repository": "https://github.com/sagiavinash/redux-store-manager.git",
"scripts": {
"build": "webpack",
"build-esm": "babel lib/index.js -o es/index.js",
"lint": "eslint --ext js ./lib",
"prepublish": "npm run lint;npm run build;npm run build-esm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"javascript",
"redux",
"code splitting",
"react"
],
"author": "https://github.com/sagiavinash/",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "4",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"webpack": "^3.6.0"
},
"dependencies": {
"redux": "^2.2.1"
}
}