forked from godaddy/eslint-plugin-i18n-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.52 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
{
"name": "eslint-plugin-i18n-json",
"version": "2.1.0",
"description": "Fully extendable eslint plugin for JSON i18n translation files.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js formatter*.js src/ --fix",
"test": "npm run lint && jest --coverage"
},
"files": [
"src",
"index.js",
"formatter.js"
],
"repository": {
"type": "git",
"url": "[email protected]:godaddy/eslint-plugin-i18n-json"
},
"keywords": [
"eslint",
"json",
"i18n",
"translations",
"internationalization",
"intl",
"linter"
],
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Mayank Jethva <[email protected]>"
],
"jest": {
"roots": [
"src/",
"<rootDir>"
],
"collectCoverageFrom": [
"src/**/*.js",
"formatter.js"
]
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"peerDependencies": {
"eslint": ">=4.0.0"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"espree": "^3.5.2",
"jest": "^22.0.4",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"chalk": "^2.3.2",
"indent-string": "^3.2.0",
"intl-messageformat-parser": "^1.4.0",
"jest-diff": "^22.0.3",
"jsonlint": "^1.6.2",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"lodash.set": "^4.3.2",
"log-symbols": "^2.2.0",
"plur": "^2.1.2",
"pretty-format": "^22.0.3"
}
}