-
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.
Luhn check behaviour + typescript upgrade (#3)
* When luhn-check is enabled, scanFile will now run a luhn check before flagging a file. Previously the luhn check only affected console output logic. * Upgrading to TypeScript 3.7.3 * Update CHANGELOG.md Co-authored-by: Ian Sutherland <[email protected]>
- Loading branch information
1 parent
138c5a4
commit 7aba008
Showing
10 changed files
with
392 additions
and
213 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": "ccscan", | ||
"description": "Scan files for credit card numbers", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"main": "build/index.js", | ||
|
@@ -47,20 +47,20 @@ | |
"@types/yargs": "^13.0.3", | ||
"@zeit/ncc": "^0.20.5", | ||
"chalk": "^2.4.2", | ||
"eslint": "^5.16.0", | ||
"eslint-config-neo": "~0.3.3", | ||
"eslint": "^6.0.0", | ||
"eslint-config-neo": "~0.5.1", | ||
"fast-luhn": "^1.0.4", | ||
"globby": "^10.0.1", | ||
"husky": "^3.0.8", | ||
"jest": "^24.9.0", | ||
"line-reader": "^0.4.0", | ||
"lint-staged": "^9.4.2", | ||
"prettier": "^1.18.2", | ||
"prettier": "^1.19.0", | ||
"rimraf": "^3.0.0", | ||
"strip-ansi": "^5.2.0", | ||
"ts-jest": "^24.1.0", | ||
"ts-node": "^8.4.1", | ||
"typescript": "~3.5.3", | ||
"typescript": "3.7.3", | ||
"yargs": "^14.2.0" | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.