-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
105 lines (105 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@lint-todo/eslint-formatter-todo",
"version": "4.0.3",
"description": "An ESLint formatter that can report errors as todos.",
"repository": {
"type": "git",
"url": "git+https://github.com/lint-todo/eslint-formatter-todo.git"
},
"license": "MIT",
"contributors": [
"Steve Calvert <[email protected]>",
"Renato Iwashima <[email protected]>"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"clean": "tsc --build --clean",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"test": "npm-run-all lint test:*",
"test:jest": "npm run build && jest --no-cache"
},
"dependencies": {
"@lint-todo/utils": "^13.1.0",
"chalk": "^4.1.0",
"ci-info": "^3.3.0",
"fs-extra": "^10.0.0",
"has-flag": "^4.0.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"type-fest": "^0.20.2",
"validate-peer-dependencies": "^2.1.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@microsoft/jest-sarif": "^1.0.0-beta.0",
"@scalvert/bin-tester": "^2.1.1",
"@types/eslint": "^7.2.4",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/text-table": "^0.2.1",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"date-fns": "^2.16.1",
"eslint": "^8.4.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^26.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"release-it-lerna-changelog": "^3.1.0",
"tmp": "^0.2.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"eslint": "^8.4.0"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files:": [
"lib/"
],
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "14.20.0",
"npm": "9.1.1"
},
"bugs": {
"url": "https://github.com/lint-todo/eslint-formatter-todo/issues"
},
"homepage": "https://github.com/lint-todo/eslint-formatter-todo#readme",
"directories": {
"lib": "lib"
},
"keywords": [
"eslint"
]
}