-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated npm packages, eslint to match, README
- Loading branch information
Showing
5 changed files
with
53 additions
and
58 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
This file was deleted.
Oops, something went wrong.
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
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 +1 @@ | ||
module.exports = require('./dist/index'); | ||
module.exports = require('./dist/index'); |
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,47 +1,55 @@ | ||
{ | ||
"name": "react-simple-di", | ||
"version": "1.2.0", | ||
"description": "Simple Dependancy Injection Solution for React", | ||
"name": "hymn-di", | ||
"version": "1.0.0", | ||
"description": "Simple dependancy injection solution for React", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/kadirahq/react-simple-di" | ||
"url": "https://github.com/markoshust/hymn-di" | ||
}, | ||
"license": "MIT", | ||
"options": { | ||
"mocha": "--require scripts/mocha_runner lib/**/__tests__/**/*.js" | ||
}, | ||
"scripts": { | ||
"prepublish": ". ./scripts/prepublish.sh", | ||
"lint": "eslint ./lib", | ||
"lintfix": "eslint ./lib --fix", | ||
"testonly": "mocha $npm_package_options_mocha", | ||
"test": "npm run lint && npm run testonly" | ||
"prepublish": ". ./scripts/prepublish.sh", | ||
"start": "babel src -d dist --watch", | ||
"test": "npm run lint && npm run testonly", | ||
"test-watch": "npm run testonly -- --watch --watch-extensions js", | ||
"testonly": "mocha $npm_package_options_mocha" | ||
}, | ||
"devDependencies": { | ||
"nodemon": "1.7.x", | ||
"mocha": "2.x.x", | ||
"chai": "3.x.x", | ||
"eslint": "1.7.x", | ||
"eslint-plugin-react": "3.x.x", | ||
"babel-eslint": "4.x.x", | ||
"eslint-plugin-babel": "2.x.x", | ||
"babel-cli": "6.x.x", | ||
"babel-core": "6.x.x", | ||
"babel-eslint": "4.x.x", | ||
"babel-plugin-transform-runtime": "6.x.x", | ||
"babel-polyfill": "6.x.x", | ||
"babel-preset-es2015": "6.x.x", | ||
"babel-preset-stage-2": "6.x.x", | ||
"babel-preset-react": "6.x.x", | ||
"babel-plugin-transform-runtime": "6.x.x", | ||
"react": "^15.0.0", | ||
"react-dom": "^15.0.0", | ||
"react-addons-test-utils": "^15.0.0", | ||
"enzyme": "^2.2.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^0.14.0 || ^15.0.0" | ||
"babel-preset-stage-2": "6.x.x", | ||
"chai": "3.x.x", | ||
"enzyme": "2.x.x", | ||
"eslint": "3.x.x", | ||
"eslint-config-airbnb": "10.x.x", | ||
"eslint-plugin-babel": "3.x.x", | ||
"eslint-plugin-import": "1.x.x", | ||
"eslint-plugin-jsx-a11y": "2.x.x", | ||
"eslint-plugin-react": "6.x.x", | ||
"estraverse": "4.x.x", | ||
"estraverse-fb": "1.x.x", | ||
"lodash.sortby": "4.x.x", | ||
"mocha": "3.x.x", | ||
"nodemon": "1.x.x", | ||
"react": "15.x.x", | ||
"react-addons-test-utils": "15.x.x", | ||
"react-dom": "15.x.x" | ||
}, | ||
"dependencies": { | ||
"babel-runtime": "6.x.x", | ||
"hoist-non-react-statics": "1.x.x" | ||
}, | ||
"peerDependencies": { | ||
"react": "^0.14.0 || ^15.0.0" | ||
} | ||
} |