-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "eslint-generate-todo",
"version": "0.1.1",
"description": "Tool for generating eslint todo files",
"main": "dist/index.js",
"exports": {
".": {
"require": "./*.js"
}
},
"scripts": {
"build": "yarn prettier --list-different && yarn lint && tsc",
"dev": "nodemon --watch . --ignore dist --ext js,ts,json --exec \"yarn build\"",
"format": "yarn prettier --write",
"lint": "eslint . --ext .js,.ts",
"prepack": "tsc",
"prettier": "prettier .",
"release": "np --any-branch",
"test": "jest"
},
"bin": {
"eslint-generate-todo": "./bin/eslint-generate-todo.cjs"
},
"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": "github:doximity/eslint-generate-todo",
"keywords": [
"ESLint",
"linting",
"eslint-todo"
],
"dependencies": {
"caporal": "^1.4.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"np": "^7.6.1",
"precise-commits": "^1.0.2",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
},
"peerDependencies": {
"eslint": ">=7.0.0 <9.0.0"
}
}