-
Notifications
You must be signed in to change notification settings - Fork 237
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
Showing
1 changed file
with
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,20 @@ | |
"description": "Netlify Identity widget for easy integration", | ||
"releaseVersion": "v1", | ||
"scripts": { | ||
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress", | ||
"dev": | ||
"cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress", | ||
"start": "serve build -s -c 1", | ||
"prestart": "npm run build", | ||
"build": "cross-env NODE_ENV=production webpack --progress", | ||
"prebuild": "mkdirp build", | ||
"test": "npm run -s lint", | ||
"lint": "eslint src test", | ||
"release": "node ./script/release.js", | ||
"format": "prettier --write 'src/**/*.js'", | ||
"format-preview": "prettier --list-different 'src/**/*.js'" | ||
"format": "prettier-eslint --write 'src/**/*.js'", | ||
"format-preview": "prettier-eslint --list-different 'src/**/*.js'" | ||
}, | ||
"main": "./releases/v1/netlify-identity", | ||
"keywords": [ | ||
"netlify", | ||
"identity", | ||
"authentication" | ||
], | ||
"keywords": ["netlify", "identity", "authentication"], | ||
"license": "MIT", | ||
"author": "Matt Biilmann <[email protected]>", | ||
"devDependencies": { | ||
|