react-use/package.json
semantic-release-bot d8800b4b42 chore(release): 5.1.0 [skip ci]
# [5.1.0](https://github.com/streamich/react-use/compare/v5.0.0...v5.1.0) (2018-12-19)

### Bug Fixes

* 🐛 just use any for setTimeout because of diff environments ([55673cb](https://github.com/streamich/react-use/commit/55673cb))
* 🐛 memoized does not receive arguments ([244a533](https://github.com/streamich/react-use/commit/244a533))
* 🐛 use Timeout type for build to work ([8c66abe](https://github.com/streamich/react-use/commit/8c66abe))

### Features

* added useDebounce ([91ff6ba](https://github.com/streamich/react-use/commit/91ff6ba))
* pass arguments to memoized callback ([#81](https://github.com/streamich/react-use/issues/81)) ([88dd513](https://github.com/streamich/react-use/commit/88dd513))
2018-12-19 23:03:38 +00:00

82 lines
2.0 KiB
JSON

{
"name": "react-use",
"version": "5.1.0",
"description": "Collection of React Hooks",
"main": "lib/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"start": "yarn storybook",
"test": "echo hmm...",
"build": "tsc",
"clean": "rimraf lib storybook-static",
"storybook": "start-storybook -p 6008",
"storybook:build": "build-storybook",
"storybook:upload": "gh-pages -d storybook-static",
"storybook:clean": "rimraf storybook-static",
"release": "semantic-release"
},
"author": "@streamich",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/streamich/react-use"
},
"bugs": {
"url": "https://github.com/streamich/react-use/issues"
},
"homepage": "https://github.com/streamich/react-use#readme",
"dependencies": {
"@types/react": "^16.7.13",
"throttle-debounce": "^2.0.1",
"nano-css": "^3.4.0",
"rebound": "^0.1.0",
"ts-easing": "^0.1.0",
"use-onclickoutside": "^0.1.0",
"use-callbag": "^0.1.2",
"react-wait": "^0.3.0"
},
"devDependencies": {
"@storybook/react": "^3.4.11",
"react": "next",
"react-dom": "next",
"typescript": "^3.2.2",
"ts-node": "^7.0.1",
"ts-loader": "3",
"babel-core": "^6.26.3",
"rimraf": "^2.6.2",
"gh-pages": "^2.0.1",
"semantic-release": "^15.10.6",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/npm": "^5.0.5",
"@semantic-release/git": "^7.0.5",
"rxjs": "^6.3.3",
"callbag-interval": "^1.1.0",
"react-spring": "^6.1.4"
},
"peerDependencies": {
"react": "16.7.0-alpha.0",
"react-dom": "16.7.0-alpha.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}