-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 KB
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
{
"name": "eslint-formatter-checklist",
"version": "0.1.0",
"description": "ESLint formatter with checklist style.",
"keywords": [
"eslint",
"eslint-formatter",
"eslintformatter"
],
"homepage": "https://github.com/jerone/eslint-formatter-checklist#readme",
"bugs": {
"url": "https://github.com/jerone/eslint-formatter-checklist/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerone/eslint-formatter-checklist.git"
},
"license": "MIT",
"author": "Jeroen van Warmerdam <jeronevw@hotmail.com>",
"main": "src/index.js",
"scripts": {
"clean": "rimraf coverage",
"lint": "lockfile-lint && eslint -f ./src/index.js .",
"lint:fix": "prettier --write \"**/*\" & eslint -f ./src/index.js --fix .",
"ncu": "ncu --target minor chalk && ncu -x chalk",
"security:eslint": "eslint -f @microsoft/eslint-formatter-sarif -o eslint-results.sarif .",
"test": "npm run clean && jest"
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.3.2",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-json-files": "^4.1.0",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lockfile-lint": "^4.12.1",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=14.15.0"
}
}