-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
63 lines (63 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
59
60
61
62
63
{
"name": "eslint-plugin-i18next",
"version": "6.1.1",
"description": "ESLint plugin for i18n",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"i18n",
"i10next",
"internationalization",
"localization"
],
"author": "edvardchen",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/edvardchen/eslint-plugin-i18next.git"
},
"scripts": {
"preversion": "npm run test",
"postpublish": "git push --follow-tags",
"test:watch": "npm t -- --watch",
"test": "mocha --timeout 50000 tests/lib/rules/no-literal-string/ && pnpm --filter='./examples/*' run lint"
},
"dependencies": {
"lodash": "^4.17.21",
"requireindex": "~1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@typescript-eslint/parser": "^1.10.2",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"husky": "^1.3.1",
"lint-staged": "^9.4.2",
"mocha": "^10.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.2",
"vue-eslint-parser": "^6.0.3"
},
"engines": {
"node": ">=0.10.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "ISC"
}