-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luis Merino
committed
Sep 12, 2017
1 parent
e6d0fa5
commit 305380a
Showing
2 changed files
with
23 additions
and
8 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@researchgate/react-intersection-list", | ||
"description": "React List Component using the Intersection Observer API", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": "Luis Merino <[email protected]>", | ||
"bugs": { | ||
"url": "https://github.com/researchgate/react-intersection-list/issues" | ||
|
@@ -39,7 +39,9 @@ | |
"validate-commit-msg": "^2.14.0", | ||
"whatwg-fetch": "^2.0.3" | ||
}, | ||
"files": ["lib"], | ||
"files": [ | ||
"lib" | ||
], | ||
"homepage": "https://github.com/researchgate/react-intersection-list#readme", | ||
"keywords": [ | ||
"Intersection", | ||
|
@@ -53,7 +55,10 @@ | |
], | ||
"license": "MIT", | ||
"lint-staged": { | ||
"{src,docs/docs}/**/*.js": ["eslint --fix", "git add"] | ||
"{src,docs/docs}/**/*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
] | ||
}, | ||
"main": "lib/js/index.js", | ||
"module": "lib/es/index.js", | ||
|
@@ -67,14 +72,14 @@ | |
}, | ||
"jest": { | ||
"rootDir": "src", | ||
"testMatch": ["**/__tests__/**/*.spec.js"] | ||
"testMatch": [ | ||
"**/__tests__/**/*.spec.js" | ||
] | ||
}, | ||
"scripts": { | ||
"build": "npm run build:js && npm run build:es", | ||
"build:js": | ||
"cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files", | ||
"build:es": | ||
"cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files", | ||
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files", | ||
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files", | ||
"build:storybook": "build-storybook --output-dir docs", | ||
"create-github-release": "conventional-github-releaser -p angular", | ||
"clear": "rimraf ./lib", | ||
|