-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "eslint-plugin-react-i18n",
"version": "1.0.3",
"description": "ESLint rules to help enforce i18n in react",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"react",
"i18n",
"react-i18n",
"i18next",
"react-i18next",
"internationalization"
],
"author": "Emmanuel Roussel",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib/** tests/**",
"lint:fix": "npm run lint -- --fix",
"test": "mocha tests --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/lolatravel/eslint-plugin-react-i18n"
},
"homepage": "https://github.com/lolatravel/eslint-plugin-react-i18n",
"bugs": "https://github.com/lolatravel/eslint-plugin-react-i18n/issues",
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"peerDependencies": {
"eslint": "^3 || ^4 || ^5 || ^6"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"mocha": "^5.2.0",
"prettier": "1.19.1"
},
"engines": {
"node": ">=6"
},
"license": "MIT"
}