Skip to content

Commit 7a46608

Browse files
committed
initial commit
Description: - initial commit with package.json and .gitignore
0 parents  commit 7a46608

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
lib

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "react-redux-connector",
3+
"version": "1.0.0",
4+
"description": "Connector component to hoist all Redux-related logic of your app",
5+
"main": "./lib/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/akuzko/react-redux-connector.git"
12+
},
13+
"keywords": [
14+
"react",
15+
"reactjs",
16+
"redux",
17+
"react-redux"
18+
],
19+
"author": "Artem Kuzko <[email protected]> (https://github.com/akuzko)",
20+
"license": "MIT",
21+
"homepage": "https://github.com/akuzko/react-redux-connector",
22+
"devDependencies": {
23+
"react": "^15.3.2",
24+
"redux": "^3.6.0"
25+
}
26+
}

0 commit comments

Comments
 (0)