-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
{
"name": "i18n-populator",
"version": "1.1.1",
"description": "A small NodeJS tool that generates translations for i18n and put them on their appropriate files",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky"
},
"engines": {
"node": ">=14.15.0"
},
"bin": "cli.js",
"files": [
"config.js",
"cli.js",
"ALL-LANGUAGES-CODES.json",
"utils/getConfigPath.js",
"utils/getOrCreateJsonFile.js",
"utils/getTranslationEnginePreferences.js",
"utils/objectUtils.js",
"utils/promptUtils.js",
"utils/supportedLanguagesUtils.js",
"utils/translationEnginesUtils.js",
"utils/validateAndPromptUserJSONFiles.js",
"utils/validateSettingsFile.js",
"utils/listFiles.js",
"utils/importJSONFile.js",
"utils/promptUser.js",
"controllers/translateController.js",
"controllers/languagesController.js",
"controllers/generateConfigController.js",
"services/bingTranslate.js",
"services/translateService.js",
"services/libreTranslate.js"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"i18n",
"tools",
"save-time",
"cli",
"cli-app",
"cli-tool",
"development-tool"
],
"author": "victordev2002@gmail.com",
"license": "ISC",
"dependencies": {
"@vitalets/google-translate-api": "^9.2.0",
"bing-translate-api": "^2.9.1",
"commander": "^8.3.0",
"dset": "^3.1.2",
"node-fetch": "^2.7.0",
"prompt-sync-plus": "^1.0.2"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@jest/globals": "^29.7.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"jest": "^29.6.4",
"prettier": "3.3.1"
}
}