-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1011 Bytes
/
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
{
"name": "unified-translations",
"description": "Unify translations in one single file for maintenance and build to separated files.",
"keywords": [
"translations",
"i18n",
"unify"
],
"version": "1.1.1",
"main": "index.js",
"bin": "./index.js",
"author": "Matheus Cristian <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node . --translations-file ./example/translations.json --languages pt-br=./example/pt-br.json,en=./example/en.json --mode build --suggest \"pt-br:pt>en\"",
"reverse": "node . --translations-file ./example/translations.json --languages pt-br=./example/pt-br.json,en=./example/en.json --mode reverse"
},
"repository": {
"type": "git",
"url": "https://github.com/cristiantela/unified-translations.git"
},
"bugs": {
"url": "https://github.com/cristiantela/unified-translations/issues"
},
"dependencies": {
"@vitalets/google-translate-api": "^8.0.0",
"lodash": "^4.17.21"
}
}