-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.82 KB
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
{
"name": "i18n-gen",
"version": "0.5.2",
"author": "Roger LAM <rlhk.open@gmail.com>",
"description": "Command line utility for i18n JSON/YAML generation, from remote (Google Spreadsheets) .tsv source",
"keywords": [
"i18n",
"localization",
"locales"
],
"scripts": {
"test": "node_modules/.bin/mocha --reporter dot --ui tdd --compilers ls:node_modules/livescript",
"test:remote": "npm run compile && ./lib/index.js -p './out' -s https://docs.google.com/spreadsheets/d/1NO-w7UKhIwWCT4VymBnH7xk6VCUKECqB5XNrwt49rUA/pub?output=tsv",
"test:local": "npm run compile && ./lib/index.js -p './out' -s ./test/data-source/i18n-gen-sample-source.xlsx",
"test:local:json": "npm run compile && ./lib/index.js -p './out' -f 'json' -s ./test/data-source/i18n-gen-sample-source.xlsx",
"test:remote:json": "npm run compile && ./lib/index.js -p './out' -f 'json' -s https://docs.google.com/spreadsheets/d/1NO-w7UKhIwWCT4VymBnH7xk6VCUKECqB5XNrwt49rUA/pub?output=tsv",
"test:no-src": "npm run compile && ./lib/index.js -p './out'",
"clean": "rimraf dist; rimraf out",
"pretest": "npm run compile",
"prepublish": "npm run compile",
"compile": "lsc -c -b -m embedded --no-header -o lib/ src/index.ls"
},
"repository": {
"type": "git",
"url": "git://github.com/rlhk/i18n-gen.git"
},
"license": "MIT",
"preferGlobal": true,
"bin": {
"i18n-gen": "lib/index.js"
},
"dependencies": {
"download": "^5.0.2",
"download-status": "^2.2.1",
"exceljs": "1.6.3",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-excel-to-json": "0.0.3",
"prelude-ls": "^1.1.2",
"spreadsheet-column": "^1.1.1"
},
"devDependencies": {
"istanbul": "^0.4.5",
"livescript": "^1.5.0",
"mocha": "^5.2.0",
"rimraf": "^2.4.3",
"sinon": "^1.17.7"
}
}