-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.11 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
{
"name": "eslint-config-xo-typescript",
"version": "0.43.0",
"description": "ESLint shareable config for TypeScript to be used with eslint-config-xo",
"license": "MIT",
"repository": "xojs/eslint-config-xo-typescript",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "ava"
},
"files": [
"index.js",
"space.js"
],
"keywords": [
"typescript",
"eslintconfig",
"xo",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple"
],
"dependencies": {
"typescript": ">=4.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"ava": "^2.4.0",
"eslint": "^7.8.1",
"temp-write": "^4.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=4.28.1",
"eslint": ">=7.30.0",
"typescript": ">=4.3"
}
}