-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to use new prop-types package
- Loading branch information
Charles King
committed
Apr 9, 2017
1 parent
78da269
commit 05e0915
Showing
6 changed files
with
126 additions
and
106 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 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,107 +1,108 @@ | ||
{ | ||
"name": "react-web-animation", | ||
"version": "0.0.0-development", | ||
"main": "./lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/RinconStrategies/react-web-animation.git" | ||
}, | ||
"keywords": [ | ||
"react", | ||
"animation", | ||
"web-animations-api" | ||
"name": "react-web-animation", | ||
"version": "0.0.0-development", | ||
"main": "./lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/RinconStrategies/react-web-animation.git" | ||
}, | ||
"keywords": [ | ||
"react", | ||
"animation", | ||
"web-animations-api" | ||
], | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"src" | ||
], | ||
"author": "Charles King <[email protected]> (http://github.com/bringking)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/RinconStrategies/react-web-animation/issues" | ||
}, | ||
"homepage": "https://github.com/RinconStrategies/react-web-animation", | ||
"scripts": { | ||
"lint": "eslint src test", | ||
"test": "NODE_ENV=test jest --coverage --no-cache", | ||
"build:lib": "babel src --out-dir lib", | ||
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-web-animation.js", | ||
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-web-animation.min.js", | ||
"build:all": "yarn build:lib && yarn build:umd && yarn build:umd:min", | ||
"semantic-release": "semantic-release pre && yarn build:all && npm publish && semantic-release post" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.8.0", | ||
"babel-core": "^6.8.0", | ||
"babel-eslint": "^7.2.0", | ||
"babel-jest": "^18.0.0", | ||
"babel-loader": "^6.2.3", | ||
"babel-plugin-lodash": "^3.2.11", | ||
"babel-plugin-transform-object-rest-spread": "^6.23.0", | ||
"babel-preset-es2015": "^6.5.0", | ||
"babel-preset-react": "^6.5.0", | ||
"chai": "*", | ||
"cross-env": "^3.2.4", | ||
"cz-customizable": "^4.0.0", | ||
"enzyme": "^2.0.0", | ||
"eslint": "3.18.0", | ||
"eslint-plugin-react": "^6.9.0", | ||
"jest": "^19.0.2", | ||
"jest-cli": "^18.0.0", | ||
"lodash-webpack-plugin": "^0.11.2", | ||
"react": ">=15.1.0", | ||
"react-addons-test-utils": ">=15.1.0", | ||
"react-dom": ">=15.1.0", | ||
"semantic-release": "^6.3.2", | ||
"source-map": "^0.5.4", | ||
"webpack": "^2.3.1" | ||
}, | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**/!(*.test).js" | ||
], | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"src" | ||
"coveragePathIgnorePatterns": [ | ||
"<rootDir>/node_modules/", | ||
"dist/", | ||
"lib/" | ||
], | ||
"author": "Charles King <[email protected]> (http://github.com/bringking)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/RinconStrategies/react-web-animation/issues" | ||
}, | ||
"homepage": "https://github.com/RinconStrategies/react-web-animation", | ||
"scripts": { | ||
"lint": "eslint src test", | ||
"test": "NODE_ENV=test jest --coverage --no-cache", | ||
"build:lib": "babel src --out-dir lib", | ||
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-web-animation.js", | ||
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-web-animation.min.js", | ||
"build:all": "yarn build:lib && yarn build:umd && yarn build:umd:min", | ||
"semantic-release": "semantic-release pre && yarn build:all && npm publish && semantic-release post" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.8.0", | ||
"babel-core": "^6.8.0", | ||
"babel-eslint": "^7.2.0", | ||
"babel-loader": "^6.2.3", | ||
"babel-plugin-lodash": "^3.2.11", | ||
"babel-preset-es2015": "^6.5.0", | ||
"babel-preset-react": "^6.5.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.23.0", | ||
"chai": "*", | ||
"cross-env": "^3.2.4", | ||
"cz-customizable": "^4.0.0", | ||
"eslint-plugin-react": "^6.9.0", | ||
"babel-jest": "^18.0.0", | ||
"jest": "^19.0.2", | ||
"jest-cli": "^18.0.0", | ||
"enzyme": "^2.0.0", | ||
"eslint": "3.18.0", | ||
"lodash-webpack-plugin": "^0.11.2", | ||
"react": ">=15.1.0", | ||
"react-addons-test-utils": ">=15.1.0", | ||
"react-dom": ">=15.1.0", | ||
"semantic-release": "^6.3.2", | ||
"source-map": "^0.5.4", | ||
"webpack": "^2.3.1" | ||
}, | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**/!(*.test).js" | ||
], | ||
"coveragePathIgnorePatterns": [ | ||
"<rootDir>/node_modules/", | ||
"dist/", | ||
"lib/" | ||
], | ||
"moduleFileExtensions": [ | ||
"js", | ||
"jsx", | ||
"json" | ||
], | ||
"transform": { | ||
"^.+\\.js$": "<rootDir>/node_modules/babel-jest" | ||
} | ||
}, | ||
"release": { | ||
"analyzeCommits": { | ||
"path": "./release/analyze-commits.js", | ||
"minorTypes": [ | ||
"fix", | ||
"feat" | ||
], | ||
"patchTypes": [ | ||
"refactor", | ||
"docs" | ||
] | ||
} | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "node_modules/cz-customizable" | ||
}, | ||
"cz-customizable": { | ||
"config": ".cz-config.js" | ||
} | ||
}, | ||
"peerDependencies": { | ||
"react": ">=0.14.0 <16.0.0", | ||
"react-dom": ">=0.14.0 <16.0.0" | ||
"moduleFileExtensions": [ | ||
"js", | ||
"jsx", | ||
"json" | ||
], | ||
"transform": { | ||
"^.+\\.js$": "<rootDir>/node_modules/babel-jest" | ||
} | ||
}, | ||
"release": { | ||
"analyzeCommits": { | ||
"path": "./release/analyze-commits.js", | ||
"minorTypes": [ | ||
"fix", | ||
"feat" | ||
], | ||
"patchTypes": [ | ||
"refactor", | ||
"docs" | ||
] | ||
} | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "node_modules/cz-customizable" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.17.4", | ||
"shortid": "^2.2.4" | ||
"cz-customizable": { | ||
"config": ".cz-config.js" | ||
} | ||
}, | ||
"peerDependencies": { | ||
"react": ">=0.14.0 <16.0.0", | ||
"react-dom": ">=0.14.0 <16.0.0", | ||
"prop-types": "^15.5.6" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.17.4", | ||
"shortid": "^2.2.4" | ||
} | ||
} |
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
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