-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 1.51 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
{
"name": "eslint-plugin-i18n-json",
"version": "4.0.1",
"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": "git@github.com:godaddy/eslint-plugin-i18n-json"
},
"keywords": [
"eslint",
"json",
"i18n",
"translations",
"internationalization",
"intl",
"linter"
],
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Mayank Jethva <mjethva@godaddy.com>",
"Niko Muukkonen <niko.muukkonen1@gmail.com>"
],
"jest": {
"roots": [
"src/",
"<rootDir>"
],
"collectCoverageFrom": [
"src/**/*.js",
"formatter.js"
],
"testEnvironment": "node"
},
"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": "^23.0.4",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.0.18",
"chalk": "^2.3.2",
"indent-string": "^3.2.0",
"jest-diff": "^22.0.3",
"lodash": "^4.17.21",
"log-symbols": "^2.2.0",
"parse-json": "^5.2.0",
"plur": "^2.1.2",
"pretty-format": "^22.0.3"
}
}