-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "eslint-plugin-kuzzle",
"version": "0.0.13",
"description": "Kuzzle Coding Standard",
"homepage": "https://github.com/kuzzleio/eslint-plugin-kuzzle",
"repository": {
"type": "git",
"url": "https://github.com/kuzzleio/eslint-plugin-kuzzle.git",
"directory": "packages/backend"
},
"keywords": [
"eslint",
"eslint-plugin",
"kuzzle"
],
"author": "The Kuzzle Team",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib",
"test": "mocha tests --recursive"
},
"peerDependencies": {
"eslint": ">= 8.50.0 9<",
"eslint-plugin-prettier": "^5.1.3",
"typescript": ">= 5.2 <5.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2"
},
"devDependencies": {
"eslint-plugin-eslint-plugin": "^6.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.4.0",
"typescript": "5.4.*"
},
"license": "Apache 2",
"files": [
"lib/",
"README.md",
"package.json"
],
"engines": {
"node": ">=16.0.0"
}
}