-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 884 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 884 Bytes
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
{
"name": "eslint-plugin-i18n-checker",
"version": "1.4.0",
"description": "Check i18n keys existence",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"json",
"i18n",
"translations",
"internationalization",
"intl",
"linter"
],
"repository": {
"type": "git",
"url": "https://github.com/LuciNyan/eslint-plugin-i18n-checker"
},
"author": "lucinyan",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha tests --recursive"
},
"dependencies": {
"dotty": "^0.1.2"
},
"devDependencies": {
"@types/node": "^17.0.8",
"eslint": "^8.0.1",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.1.3"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"license": "MIT"
}