-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from lamhieu-vk/master
rewrite to optimize performance
- Loading branch information
Showing
3 changed files
with
36 additions
and
24 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 |
---|---|---|
|
@@ -28,26 +28,33 @@ | |
"example": "example" | ||
}, | ||
"homepage": "https://github.com/maslianok/react-resize-detector", | ||
"keywords": [ | ||
"react", | ||
"resize", | ||
"detector" | ||
], | ||
"keywords": ["react", "resize", "detector"], | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"maintainers": [ | ||
"maslianok <[email protected]>" | ||
{ | ||
"name": "maslianok", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"contributors": [ | ||
"James J. Womack (@james_womack)" | ||
{ | ||
"name": "James J. Womack (@james_womack)" | ||
}, | ||
{ | ||
"name": "Lam Hieu", | ||
"email": "[email protected]", | ||
"url": "https://lamhieu.info" | ||
} | ||
], | ||
"name": "react-resize-detector", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/maslianok/react-resize-detector.git" | ||
}, | ||
"scripts": { | ||
"build": "babel --presets=react,es2015 --plugins=transform-object-assign,transform-class-properties src --out-dir lib", | ||
"build": | ||
"babel --presets=react,es2015 --plugins=transform-object-assign,transform-class-properties src --out-dir lib", | ||
"clean": "rimraf lib", | ||
"lint": "eslint -c .eslintrc src", | ||
"prepublishOnly": "npm run lint && npm run clean && npm run build" | ||
|
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