Skip to content

Commit e3fe0b2

Browse files
author
Cédric Delpoux
committed
v1.1.0
1 parent 1ad48fc commit e3fe0b2

File tree

3 files changed

+2905
-13
lines changed

3 files changed

+2905
-13
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.0.6 - 2017-08-24
4+
5+
* Changed: Import PropTypes from `prop-types` package
6+
* Added: Yarn
7+
38
## 1.0.5 - 2015-07-09
49

510
* Changed: webpack build

package.json

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,28 @@
11
{
22
"name": "react-simple-tooltip",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"description": "A lightweight and simple tooltip component for React",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/xuopled/react-simple-tooltip.git"
88
},
9-
"keywords": [
10-
"react",
11-
"tooltip",
12-
"bubble"
13-
],
9+
"keywords": ["react", "tooltip", "bubble"],
1410
"author": "Cédric Delpoux <[email protected]>",
1511
"license": "MIT",
1612
"bugs": {
1713
"url": "https://github.com/xuopled/react-simple-tooltip/issues"
1814
},
1915
"homepage": "https://github.com/xuopled/react-simple-tooltip#readme",
2016
"main": "lib/index.js",
21-
"files": [
22-
"lib"
23-
],
17+
"files": ["lib"],
2418
"dependencies": {
25-
"classnames": "~2.1.2",
26-
"prop-types": "^15.5.10",
27-
"react": "^0.13.3"
19+
"classnames": "~2.2.5",
20+
"prop-types": "~15.5.0"
2821
},
2922
"devDependencies": {
3023
"babel": "~5.6.14",
3124
"babel-core": "~5.6.15",
32-
"babel-eslint": "~3.1.20",
25+
"babel-eslint": "^7.2.3",
3326
"babel-loader": "~5.1.4",
3427
"css-loader": "~0.15.1",
3528
"eslint": "~0.21.2",
@@ -40,6 +33,10 @@
4033
"style-loader": "~0.12.2",
4134
"webpack": "~1.10.1"
4235
},
36+
"peerDependencies": {
37+
"react": "^15.6.0",
38+
"react-dom": "^15.6.0"
39+
},
4340
"scripts": {
4441
"clean": "rm -rf lib",
4542
"build": "webpack --progress --colors --display-modules",

0 commit comments

Comments
 (0)