-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.44 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
{
"name": "keeli",
"version": "0.0.0",
"main": "dist/index.js",
"description": "Configurable CLI validation tool to check for common problems in your translated source files.",
"author": {
"name": "Michael Wuergler",
"email": "wuergler@gmail.com",
"url": "https://github.com/radiovisual"
},
"bugs": {
"url": "https://github.com/radiovisual/keeli/issues"
},
"scripts": {
"build": "npm run typecheck && npm run test && npm run clean && node build/cli.mjs",
"build:dev": "npm run clean && npm run typecheck && node build/cli.mjs",
"start": "npm run build:dev -- --watch",
"clean": "rimraf dist",
"test": "jest",
"typecheck": "tsc --noEmit",
"validate-i18n": "keeli"
},
"bin": {
"keeli": "dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.13",
"esbuild": "0.21.4",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.7.8",
"chalk": "^4.0.0",
"cli-table3": "^0.6.5",
"flattie": "^1.1.1",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"terminal-link": "^2.1.1"
},
"keywords": [
"cli",
"validation",
"check",
"i18n",
"translation",
"integrity",
"internationalization",
"locale",
"locales",
"json",
"automation",
"ci",
"cd"
],
"license": "MIT"
}