forked from tajo/react-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devServer added to linting, package updated
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,30 +1,33 @@ | ||
{ | ||
"name": "react-portal", | ||
"version": "1.5.3", | ||
"description": "React component for transportation of modals, lightboxes, loading bars... to document.body", | ||
"main": "build/portal", | ||
"files": [ | ||
"*.md", | ||
"LICENSE", | ||
"lib", | ||
"build" | ||
], | ||
"description": "Simple React component for transportation of your modals, lightboxes, etc. to document.body", | ||
"author": "Vojtech Miksu <[email protected]>", | ||
"version": "1.5.3", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tajo/react-portal" | ||
}, | ||
"author": "Vojtech Miksu <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node devServer.js", | ||
"build": "mkdir -p build && babel ./lib/portal.js --out-file ./build/portal.js", | ||
"build:examples": "npm run clean && npm run build:examples:webpack", | ||
"build:examples:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js", | ||
"clean": "rimraf build", | ||
"test": "NODE_ENV=test mocha --compilers js:babel-register", | ||
"lint": "eslint examples lib test", | ||
"lint": "eslint examples lib test devServer.js", | ||
"prepublish": "npm run build" | ||
}, | ||
"tags": [ | ||
"react" | ||
], | ||
"keywords": [ | ||
"react", | ||
"react-component", | ||
|