-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "react-redux-connector",
"version": "1.0.1",
"description": "Object-oriented React binding for Redux",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clear": "rimraf lib",
"rebuild": "npm run clear && npm run build",
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "https://github.com/akuzko/react-redux-connector.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"redux",
"react-redux"
],
"author": "Artem Kuzko <[email protected]> (https://github.com/akuzko)",
"license": "MIT",
"homepage": "https://github.com/akuzko/react-redux-connector",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.0",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.20.2",
"jsdom": "^9.5.0",
"mocha": "^3.1.0",
"react": "^15.3.2",
"react-addons-pure-render-mixin": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"redux": "^3.6.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash": "^4.16.2"
}
}