-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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": "react-wrangler",
"version": "0.0.4",
"description": "A React component for simple and declarative state management.",
"main": "index.js",
"scripts": {
"build": "webpack --config=./webpack.config.dist.js && webpack --config=./webpack.config.examples.js",
"example": "webpack-dev-server --hot --inline --config=./webpack.config.examples.js",
"prepublish": "npm test && rm -rf ./dist && npm run build && cp dist/build/index* .",
"lint": "eslint src/** examples/**",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limscoder/react-wrangler.git"
},
"keywords": [
"react",
"redux",
"rest",
"state"
],
"author": "Dave Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/limscoder/react-wrangler/issues"
},
"homepage": "https://github.com/limscoder/react-wrangler#readme",
"devDependencies": {
"babel": "6.5.2",
"babel-core": "^6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"enzyme": "^2.7.0",
"eslint": "3.12.2",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0",
"file-loader": "0.9.0",
"jest": "18.0.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "1.3.1",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"peerDependencies": {
"immutable": "^3.8.0",
"react": "^15.0.0"
},
"dependencies": {
"react-immutable-proptypes": "^2.1.0",
"shallow-equals": "0.0.0"
}
}