-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 1.94 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
{
"name": "eslint-config-touch4it",
"version": "19.0.0",
"description": "ESLint configuration for ES6+ projects based on XO",
"license": "ISC",
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "https://github.com/touch4it/eslint-config-touch4it.git"
},
"bugs": {
"url": "https://github.com/touch4it/eslint-config-touch4it/issues"
},
"homepage": "https://github.com/touch4it/eslint-config-touch4it",
"author": "Touch4IT <hi@touch4it.com> (https://touch4it.com/)",
"contributors": [
"Viktor Sulak <sulak@touch4it.com>"
],
"keywords": [
"eslintconfig",
"xo",
"code",
"quality",
"style",
"lint",
"linter",
"eslint",
"validate",
"code style",
"standard",
"es6",
"es6+",
"esm",
"touch4it",
"unicorn",
"ava",
"mocha",
"jsdoc"
],
"type": "module",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"eslint": "eslint --no-error-on-unmatched-pattern test/*.js *.js",
"eslint:fix": "eslint --no-error-on-unmatched-pattern test/*.js *.js --fix",
"format-package": "npx format-package -w",
"mocha": "mocha test/*.test.js --exit",
"test": "npm run eslint && npm run mocha"
},
"maintainers": [
"Viktor Sulak <sulak@touch4it.com>"
],
"dependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^2.9.0",
"eslint-config-xo": "^0.46.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.10.0"
},
"peerDependencies": {
"eslint": "^9"
},
"devDependencies": {
"eslint": "^9.12.0",
"mocha": "^10.7.3"
}
}