-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "@cfware/lint",
"version": "4.0.2",
"description": "My linter for latest Node.js",
"scripts": {
"test": "node bin.js ."
},
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"bin": {
"cfware-lint": "bin.js"
},
"author": "Corey Farrell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/lint.git"
},
"homepage": "https://github.com/cfware/lint#readme",
"dependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7",
"chalk": "^5",
"confusing-browser-globals": "^1",
"eslint": "^8",
"eslint-formatter-pretty": "^5",
"eslint-plugin-eslint-comments": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^6",
"eslint-plugin-unicorn": "^48",
"is-ci": "^3",
"semver": "^7"
}
}