-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "i18next-json-sync",
"version": "2.3.1",
"description": "keep i18next json resource files in sync",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"sync-i18n": "dist/cli.js"
},
"scripts": {
"build": "rimraf dist && tsc -p src && tsc -p testRunner --noEmit",
"coverage": "rimraf coverage && yarn test --coverage",
"lint": "tslint src/**/*.ts testRunner/**/*.ts",
"pretest": "rimraf tests/**/runner.js && ts-node -P testRunner/tsconfig.json testRunner/init",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwbay/i18next-json-sync.git"
},
"keywords": [
"i18next",
"json",
"sync",
"synchronize",
"plurals",
"pluralization",
"l10n",
"i18n",
"localization",
"internationalization"
],
"author": "justin.bay@outlook.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwbay/i18next-json-sync/issues"
},
"homepage": "https://github.com/jwbay/i18next-json-sync#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/glob": "^5.0.30",
"@types/jest": "^27.4.1",
"@types/node": "^7.0.13",
"@types/yargs": "^17.0.10",
"jest": "^27.0.0",
"rimraf": "^2.5.4",
"semantic-release": "^19.0.3",
"shelljs": "^0.8.5",
"ts-node": "^10.0.0",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1",
"tslint-misc-rules": "^3.5.1",
"typescript": "^4.6.0"
},
"dependencies": {
"glob": "^7.2.0",
"json-stable-stringify": "^1.0.1",
"yargs": "^17.0.0"
}
}