-
-
Notifications
You must be signed in to change notification settings - Fork 289
/
package.json
126 lines (126 loc) · 2.68 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "xo",
"version": "0.59.3",
"description": "JavaScript/TypeScript linter (ESLint wrapper) with great defaults",
"license": "MIT",
"repository": "xojs/xo",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./cli.js",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test:clean": "find ./test -type d -name 'node_modules' -prune -not -path ./test/fixtures/project/node_modules -exec rm -rf '{}' +",
"test": "node cli.js && nyc ava"
},
"files": [
"config",
"lib",
"*.js"
],
"keywords": [
"cli-app",
"cli",
"xo",
"xoxo",
"happy",
"happiness",
"code",
"quality",
"style",
"lint",
"linter",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple",
"javascript",
"typescript"
],
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"arrify": "^3.0.0",
"cosmiconfig": "^9.0.0",
"define-lazy-prop": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-typescript": "^5.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-unicorn": "^54.0.0",
"esm-utils": "^4.3.0",
"find-cache-dir": "^5.0.0",
"find-up-simple": "^1.0.0",
"get-stdin": "^9.0.0",
"get-tsconfig": "^4.7.5",
"globby": "^14.0.2",
"imurmurhash": "^0.1.4",
"json-stable-stringify-without-jsonify": "^1.0.1",
"lodash-es": "^4.17.21",
"meow": "^13.2.0",
"micromatch": "^4.0.7",
"open-editor": "^5.0.0",
"prettier": "^3.3.3",
"semver": "^7.6.3",
"slash": "^5.1.0",
"to-absolute-glob": "^3.0.0",
"typescript": "^5.5.3"
},
"devDependencies": {
"ava": "^6.1.3",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"execa": "^9.3.0",
"nyc": "^17.0.0",
"proxyquire": "^2.1.3",
"temp-write": "^5.0.0",
"webpack": "^5.93.0"
},
"xo": {
"ignores": [
"test/fixtures",
"test/temp",
"coverage"
]
},
"ava": {
"files": [
"!test/temp"
],
"timeout": "1m",
"workerThreads": false
},
"nyc": {
"reporter": [
"text",
"lcov"
]
}
}