-
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.
- Loading branch information
1 parent
1a49aa9
commit d19a27f
Showing
1 changed file
with
14 additions
and
10 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 |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
"version": "0.0.0", | ||
"description": "Tool for generating eslint todo files", | ||
"main": "dist/index.js", | ||
"engines": { | ||
"node": ">=8.0.0" | ||
}, | ||
"scripts": { | ||
"build": "yarn prettier --list-different & yarn lint && tsc", | ||
"dev": "nodemon --watch . --ignore dist --ext js,ts,json --exec \"yarn build\"", | ||
|
@@ -13,21 +16,27 @@ | |
"bin": { | ||
"eslint-generate-todo": "./bin/eslint-generate-todo.js" | ||
}, | ||
"author": "Mark Brouch<[email protected]>", | ||
"files": [ | ||
"dist", | ||
"bin" | ||
], | ||
"author": "Mark Brouch <[email protected]>", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/doximity/eslint-generate-todo/issues" | ||
}, | ||
"homepage": "https://github.com/doximity/eslint-generate-todo#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/doximity/eslint-generate-todo.git" | ||
}, | ||
"repository": "github:doximity/eslint-generate-todo", | ||
"keywords": [ | ||
"ESLint", | ||
"linting", | ||
"eslint-todo" | ||
], | ||
"dependencies": { | ||
"caporal": "^1.3.0", | ||
"eslint": "^6.7.2", | ||
"js-yaml": "^3.13.1" | ||
}, | ||
"devDependencies": { | ||
"@types/eslint": "^6.1.3", | ||
"@types/js-yaml": "^3.12.1", | ||
|
@@ -42,11 +51,6 @@ | |
"prettier": "^1.19.1", | ||
"typescript": "^3.7.3" | ||
}, | ||
"dependencies": { | ||
"caporal": "^1.3.0", | ||
"eslint": "^6.7.2", | ||
"js-yaml": "^3.13.1" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "precise-commits" | ||
|