-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1014 Bytes
/
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
{
"name": "eslint-plugin-i18n",
"version": "2.4.0",
"description": "Internationalization's linting rules for ESLint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"i18n",
"internationalization",
"l10n",
"localization"
],
"author": "chejen",
"main": "index.js",
"scripts": {
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix",
"lint-staged": "lint-staged",
"test": "nyc --reporter=lcov mocha tests/**/*.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/chejen/eslint-plugin-i18n"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@eslint/eslintrc": "^3.1.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"nyc": "^17.1.0"
},
"lint-staged": {
"*.js": [
"npm test",
"eslint --fix"
]
},
"engines": {
"node": ">=12.0.0"
},
"license": "MIT"
}