-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "eslint-plugin-gettext",
"version": "1.1.0",
"description": "Set of eslint rules for gettext API",
"author": "App Annie Engineering",
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"keywords": [
"gettext",
"gettext-eslint",
"literal",
"eslint",
"eslint-plugin",
"i18n",
"internationalization",
"localization"
],
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-xo-space": "^0.21.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.1",
"istanbul": "~0.4.5",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^1.18.2"
},
"scripts": {
"test": "jest --coverage",
"pretest": "eslint .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": "appannie/eslint-plugin-gettext",
"license": "MIT",
"eslintConfig": {
"extends": [
"xo-space",
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"indent": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 90
}
]
}
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"lcov",
"text",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}