-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated minimist to remove vuln + formatting
- Loading branch information
ChrisBrownie55
committed
Nov 27, 2020
1 parent
71dc860
commit c01e114
Showing
9 changed files
with
1,530 additions
and
2,173 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = crlf | ||
insert_final_newline = true | ||
indent_style = tab | ||
indent_size = 2 | ||
tab_width = 2 |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"arrowParens": "always", | ||
"endOfLine": "crlf", | ||
"semi": false, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"useTabs": true, | ||
"bracketSpacing": false | ||
} |
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,45 +1,46 @@ | ||
{ | ||
"name": "pwa-icon-gen", | ||
"description": "A CLI tool for generating PWA PNG icons of different sizes from an existing image.", | ||
"keywords": [ | ||
"pwa", | ||
"icon", | ||
"generator", | ||
"gen", | ||
"progressive-web-app", | ||
"cli" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen.git" | ||
}, | ||
"homepage": "https://github.com/ChrisBrownie55/pwa-icon-gen#readme", | ||
"bugs": { | ||
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen/issues", | ||
"email": "[email protected]" | ||
}, | ||
"version": "1.0.2", | ||
"main": "./src/index.js", | ||
"bin": { | ||
"pwa-icon-gen": "./src/cli.js" | ||
}, | ||
"files": [ | ||
"src/**" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"@chbphone55/pretty-bytes": "^1.0.0", | ||
"import-jsx": "^2.0.0", | ||
"ink": "^2.1.1", | ||
"ink-spinner": "^3.0.1", | ||
"minimist": "^1.2.0", | ||
"react": "^16.8.6", | ||
"sharp": "^0.22.0" | ||
}, | ||
"scripts": { | ||
"test:publish": "e2e-verdaccio" | ||
}, | ||
"devDependencies": { | ||
"e2e-verdaccio": "^1.0.0" | ||
} | ||
"name": "pwa-icon-gen", | ||
"description": "A CLI tool for generating PWA PNG icons of different sizes from an existing image.", | ||
"keywords": [ | ||
"pwa", | ||
"icon", | ||
"generator", | ||
"gen", | ||
"progressive-web-app", | ||
"cli" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen.git" | ||
}, | ||
"homepage": "https://github.com/ChrisBrownie55/pwa-icon-gen#readme", | ||
"bugs": { | ||
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen/issues", | ||
"email": "[email protected]" | ||
}, | ||
"version": "1.0.2", | ||
"main": "./src/index.js", | ||
"bin": { | ||
"pwa-icon-gen": "./src/cli.js" | ||
}, | ||
"files": [ | ||
"src/**" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"@chbphone55/pretty-bytes": "^1.0.0", | ||
"import-jsx": "^2.0.0", | ||
"ink": "^2.1.1", | ||
"ink-spinner": "^3.0.1", | ||
"minimist": "^1.2.5", | ||
"react": "^16.8.6", | ||
"sharp": "^0.22.0" | ||
}, | ||
"scripts": { | ||
"test": "node ./src/cli.js logo.svg --out=test-out/ --sizes=75,100,125", | ||
"format": "prettier --write ." | ||
}, | ||
"devDependencies": { | ||
"prettier": "^2.2.0" | ||
} | ||
} |
Oops, something went wrong.