forked from mololab/json-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.96 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
79
80
81
82
83
84
85
86
87
88
89
{
"version": "1.6.1",
"license": "MIT",
"main": "dist/index.js",
"description": "Translate your JSON file or object into another languages with Google Translate API",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"free",
"i18n",
"json",
"translator",
"javascript",
"typescript",
"node",
"translate",
"internationalization"
],
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParvinEyvazov/json-translator.git"
},
"homepage": "https://github.com/ParvinEyvazov/json-translator#readme",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@parvineyvazov/json-translator",
"author": "ParvinEyvazov",
"module": "dist/json-translator.esm.js",
"size-limit": [
{
"path": "dist/json-translator.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/json-translator.esm.js",
"limit": "10 KB"
}
],
"bin": {
"jsontt": "bin/jsontt"
},
"devDependencies": {
"@types/http-proxy-agent": "^4.0.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"tsdx": "^0.14.1",
"bing-translate-api": "^2.8.0",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"dependencies": {
"@types/bluebird": "^3.5.36",
"@types/filesystem": "^0.0.32",
"@vitalets/google-translate-api": "8.0.0",
"axios": "^1.2.2",
"bing-translate-api": "^2.8.0",
"bluebird": "^3.7.2",
"cwait": "^1.1.2",
"http-proxy-agent": "^5.0.0",
"inquirer": "^7.0.0",
"loading-cli": "^1.1.0"
}
}