-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.76 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
{
"name": "i18n-coverage",
"version": "1.0.1",
"description": "Github action that measures i18n coverage and attaches a coverage check to the commit.",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js",
"lint": "eslint src/**/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexkiro/i18n-coverage.git"
},
"keywords": [
"github",
"i18n",
"translations",
"workflow",
"qa",
"coverage",
"internationalization",
"continuous-integration",
"translation-management",
"gettext",
"check",
"po",
"continous-deployment",
"github-actions",
"qa-automation",
"github-checks"
],
"author": "Alexandru Chirila (alexkiro)",
"license": " Apache-2.0 License",
"bugs": {
"url": "https://github.com/alexkiro/i18n-coverage/issues"
},
"homepage": "https://github.com/alexkiro/i18n-coverage#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^3.0.0",
"@actions/glob": "^0.1.0",
"po2json": "^0.4.5"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 8
},
"rules": {
"prettier/prettier": "error"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
}
}