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
60 lines (60 loc) · 1.57 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
{
"name": "redux-container-state",
"version": "0.4.0",
"description": "Local container state for Redux based on the Elm Architecture",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"jsnext:main": "src/index.js",
"scripts": {
"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:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HansDP/redux-container-state.git"
},
"keywords": [
"redux",
"elm",
"flux",
"local state",
"container state"
],
"author": "Hans De Potter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HansDP/redux-container-state/issues"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/HansDP/redux-container-state",
"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",
"react": "^15.1.0",
"redux": "^3.5.2",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^15.0.2 || ^0.14.8"
}
}