react-clickout
Advanced tools
Comparing version 2.4.3 to 3.0.0
@@ -0,1 +1,8 @@ | ||
# Changelog | ||
## [2.4] | ||
- **Chore:** React upgraded to 16.6 | ||
- **Chore:** React and ReactDOM moved to peer dependencies | ||
## [v2.1.1] | ||
@@ -14,2 +21,3 @@ - **Feature:** add ability to prevent the `handleClickout` method being called | ||
------------------------------------------------------------ | ||
## [v1.0.0] | ||
@@ -16,0 +24,0 @@ > Jan 16, 2017 |
{ | ||
"name": "react-clickout", | ||
"version": "2.4.3", | ||
"main": "lib/index.js", | ||
"version": "3.0.0", | ||
"main": "dist/index.js", | ||
"typings": "dist/src/index.d.ts", | ||
"scripts": { | ||
"test": "./node_modules/.bin/_mocha -R spec ./test/test_helper.js --recursive test/**/*", | ||
"build": "babel src --out-dir lib", | ||
"build": "tsc --emitDeclarationOnly && babel src --out-dir dist --extensions \".ts,.tsx\"", | ||
"prepublish": "npm run build", | ||
@@ -17,19 +18,21 @@ "go": "watchexec -e js,json,ts,tsx -w src -r yarn build" | ||
}, | ||
"dependencies": { | ||
"classnames": "^2.2.5" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"babel": "^6.5.2", | ||
"babel-cli": "^6.18.0", | ||
"babel-core": "^6.21.0", | ||
"babel-eslint": "^7.1.1", | ||
"babel-istanbul": "^0.12.1", | ||
"babel-loader": "^6.2.10", | ||
"babel-plugin-istanbul": "^3.1.2", | ||
"babel-preset-es2015": "^6.18.0", | ||
"babel-preset-react": "^6.16.0", | ||
"babel-preset-stage-1": "^6.22.0", | ||
"babel-register": "^6.22.0", | ||
"chai": "^3.5.0", | ||
"enzyme": "^2.7.0", | ||
"@babel/cli": "^7.2.0", | ||
"@babel/core": "^7.2.0", | ||
"@babel/plugin-proposal-class-properties": "^7.2.1", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.2.0", | ||
"@babel/polyfill": "^7.0.0", | ||
"@babel/preset-env": "^7.2.0", | ||
"@babel/preset-react": "^7.0.0", | ||
"@babel/preset-typescript": "^7.1.0", | ||
"@babel/register": "^7.0.0", | ||
"@types/classnames": "^2.2.6", | ||
"@types/enzyme": "^3.1.15", | ||
"@types/react": "^16.7.17", | ||
"@types/react-dom": "^16.0.11", | ||
"@types/sinon": "^7.0.0", | ||
"chai": "^4.2.0", | ||
"enzyme": "^3.8.0", | ||
"enzyme-adapter-react-16": "^1.7.1", | ||
"eslint": "^3.13.1", | ||
@@ -41,6 +44,7 @@ "eslint-config-airbnb": "^14.0.0", | ||
"jsdom": "^9.9.1", | ||
"mocha": "^3.2.0", | ||
"react-addons-test-utils": "^15.4.2", | ||
"sinon": "^1.17.7", | ||
"webpack": "^1.14.0" | ||
"mocha": "^5.2.0", | ||
"react": "^16.6.3", | ||
"react-dom": "^16.6.3", | ||
"sinon": "^7.2.2", | ||
"typescript": "^3.2.2" | ||
}, | ||
@@ -47,0 +51,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
146396
2
28
59
- Removedclassnames@^2.2.5
- Removedclassnames@2.5.1(transitive)