react-use/package.json
semantic-release-bot 25f6ea9954 chore(release): 4.0.0 [skip ci]
# [4.0.0](https://github.com/streamich/react-use/compare/v3.1.0...v4.0.0) (2018-10-29)

### Features

* 🎸 add useNumber alias ([a58a4a7](https://github.com/streamich/react-use/commit/a58a4a7))
* 🎸 improve useCounter interface ([395e82b](https://github.com/streamich/react-use/commit/395e82b))

### BREAKING CHANGES

* useCounter interface changed
2018-10-29 17:49:14 +00:00

78 lines
1.9 KiB
JSON

{
"name": "react-use",
"version": "4.0.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.4.18",
"@types/react-dom": "^16.0.9",
"throttle-debounce": "^2.0.1",
"nano-css": "^3.4.0",
"rebound": "^0.1.0",
"ts-easing": "^0.1.0"
},
"devDependencies": {
"@storybook/react": "^3.4.11",
"react": "16.7.0-alpha.0",
"react-dom": "16.7.0-alpha.0",
"typescript": "^3.1.3",
"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"
},
"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"
]
}
}