-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@x-spacy/eslint-config",
"version": "0.0.0",
"description": "ESLint configuration used by X-Spacy.",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"type": "module",
"author": {
"name": "Vinícius Gutierrez da Silva Rocha",
"email": "srgutyerrez@gmail.com",
"url": "https://github.com/gutyerrez"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x-spacy/eslint-config.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"tag": "latest"
},
"engines": {
"node": "v20.x.x"
},
"scripts": {
"build": "sh scripts/build.sh"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/utils": "^7.18.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-unused-imports": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-typescript": "^7.25.2",
"@babel/preset-typescript": "^7.24.7",
"eslint": "^9.9.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": false
},
"jest": {
"optional": false
}
}
}