-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "i18n-json-tool",
"version": "1.1.4",
"description": "Convert JSON i18n files via the yandex api for quick internationalization testing",
"main": "lib/library.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.conf -p",
"build-cli": "babel -d cli/ src/",
"patch": "npm version patch",
"major": "npm version major",
"minor": "npm version minor",
"release": "git push && git push --tags",
"release-patch": "npm run patch && npm run release",
"release-minor": "npm run minor && npm run release",
"release-major": "npm run major && npm run release"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mobinni/i18n-json-tool.git"
},
"keywords": [
"yandex",
"i18n",
"json",
"translate"
],
"author": "Mo Binni",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobinni/i18n-json-tool/issues"
},
"homepage": "https://github.com/mobinni/i18n-json-tool#readme",
"dependencies": {
"commander": "^2.15.1",
"isomorphic-fetch": "^2.2.1",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-ramda": "^1.6.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"dotenv": "^5.0.1",
"jest": "^22.4.3",
"prettier": "^1.16.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"jest": {
"testURL": "http://localhost/"
},
"bin": {
"translate": "./cli.js"
}
}