This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
{
"name": "local-react-redux",
"description": "Isolated local state for React container components using Redux",
"version": "0.1.3",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run check && npm run build:lib",
"build:lib": "./node_modules/.bin/babel src --out-dir lib",
"check": "npm run lint",
"lint": "./node_modules/.bin/eslint src/",
"preversion": "npm run check",
"version": "npm run build:lib",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HansDP/local-react-redux.git"
},
"keywords": [
"react",
"flux",
"redux",
"local state",
"container state",
"react container",
"container"
],
"author": "Hans De Potter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HansDP/local-react-redux/issues"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/HansDP/local-react-redux",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.9.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1"
},
"dependencies": {
"warning": "^3.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.0.0",
"redux": "^3.3.1"
}
}