-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.72 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
{
"name": "gdocs-table-downloader",
"version": "1.0.3",
"description": "Download your translations from Google Spreadsheet. Keep your translations in Google Spreadsheet in sync with your project files.",
"main": "index.js",
"scripts": {
"download-example": "node index.js --token 1oFig-VwfFKP3BLsW4ZgLiw5ftAfcD4jpcUwmXBdhCPU --sheets sheet_first,SECOND_SHEET,corrupted_sheet --customOptions ./test/customOptions.js",
"download-example-amd": "npm run download-example -- --moduleType AMD --target test/actual/amd/{locale}.{sheet}.js",
"download-example-esm": "npm run download-example -- --moduleType ESM --target test/actual/esm/{sheet}.{locale}.js",
"download-example-json": "npm run download-example -- --moduleType JSON --target test/actual/json/{sheet}.{locale}.json",
"download-example-all": "npm run download-example-amd && npm run download-example-esm && npm run download-example-json",
"test": "npm run download-example-all && jest",
"preversion": "npm test",
"update-patch": "npm version patch -m \"Upgrade to %s\"",
"postversion": "echo Remember to push changes with tags: \"git push --follow-tags\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/theghostbel/gdocs-table-downloader.git"
},
"keywords": [
"Google Spreadsheet",
"translations",
"internationalization"
],
"author": "1D-mhKGw65ZijuwaUTBkkyPG6TrdWnXiPx6eiTe4pjIE",
"license": "ISC",
"bugs": {
"url": "https://github.com/theghostbel/gdocs-table-downloader/issues"
},
"homepage": "https://theghostbel.github.io/gdocs-table-downloader/",
"dependencies": {
"googleapis": "109.0.1",
"mkdirp": "1.0.3",
"yargs": "17.6.2"
},
"devDependencies": {
"jest": "29.3.1"
}
}