-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
40 lines (40 loc) · 979 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "i18n-generator",
"version": "0.5.1",
"description": "i18n json files generator for node, web browser and command line",
"main": "i18n-generator.js",
"bin": {
"i18n": "cli.js"
},
"homepage": "https://github.com/hueitan/i18n-generator",
"bugs": "https://github.com/hueitan/i18n-generator/issues",
"repository": {
"type": "git",
"url": "https://github.com/hueitan/i18n-generator"
},
"author": {
"name": "Huei Tan",
"url": "https://github.com/hueitan/"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"browser": "browserify index.js > browser.js"
},
"license": "MIT",
"preferGlobal": true,
"keywords": [
"i18n-generator",
"i18n",
"json",
"csv",
"localization"
],
"dependencies": {
"js-beautify": "^1.10.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"jest": "^26.4.0"
}
}