-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37c0d62
commit d311bbb
Showing
2 changed files
with
2 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-generate-props", | ||
"version": "0.5.1", | ||
"version": "0.6.0", | ||
"description": "Generate default props based on your React component's PropTypes", | ||
"main": "dist/main.js", | ||
"engines": { | ||
|
@@ -36,14 +36,11 @@ | |
"coveralls": "cat ./coverage/lcov.info | coveralls", | ||
"postcoveralls": "rm -rf ./coverage", | ||
"test": "npm run react:no-prop-types && npm run react:with-prop-types", | ||
|
||
"react:clean": "rm -rf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils node_modules/prop-types", | ||
|
||
"react:no-prop-types": "npm run react:13 && mocha && npm run react:14.8 && mocha && npm run react:15.2 && mocha", | ||
"react:13": "npm run react:clean && npm i --no-save --no-progress [email protected] && rm -rf node_modules/prop-types", | ||
"react:14.8": "npm run react:clean && npm i --no-save --no-progress [email protected] [email protected] [email protected] && rm -rf node_modules/prop-types", | ||
"react:15.2": "npm run react:clean && npm i --no-save --no-progress [email protected] react-dom@15 [email protected] && rm -rf node_modules/prop-types", | ||
|
||
"react:with-prop-types": "npm run react:14 && mocha && npm run react:15 && mocha && npm run react:16 && mocha", | ||
"react:14": "npm run react:clean && npm i --no-save --no-progress [email protected] [email protected] [email protected]", | ||
"react:15": "npm run react:clean && npm i --no-save --no-progress react@15 react-dom@15 react-addons-test-utils@15", | ||
|