This repository has been archived by the owner on Jan 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dist task and move sources into lib
- Loading branch information
Showing
6 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.DS_Store | ||
node_modules | ||
dist |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,13 @@ | |
"name": "react-redux-custom-store", | ||
"version": "1.0.0", | ||
"description": "Simple wrapper around react-redux to allow configuring and using connect with a custom store name.", | ||
"homepage": "https://github.com/emmenko/react-redux-custom-store", | ||
"author": "Nicola Molinari <[email protected]>", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"main": "dist", | ||
"scripts": { | ||
"lint": "eslint .", | ||
"dist": "rimraf dist && babel lib --out-dir dist", | ||
"lint": "eslint lib test", | ||
"test": "NODE_ENV=test babel-node test/index.js | tap-spec" | ||
}, | ||
"peerDependencies": { | ||
|
@@ -32,9 +34,17 @@ | |
"react-dom": "^0.14.7", | ||
"react-redux": "^4.4.1", | ||
"redux": "^3.3.1", | ||
"rimraf": "^2.5.2", | ||
"tap-spec": "^4.1.1", | ||
"tape": "^4.5.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/emmenko/react-redux-custom-store" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/emmenko/react-redux-custom-store/issues" | ||
}, | ||
"keywords": [ | ||
"react", | ||
"redux", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters