-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "i18n-google-sheets-importer",
"version": "1.0.1",
"description": "Generate JSON translation files from a Google Sheet spreadsheet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run clean && npm run build",
"clean": "rm -rf ./dist"
},
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/mchudy/i18n-google-sheets-importer.git"
},
"keywords": [
"i18n",
"internationalization",
"translation",
"googleapis",
"googlesheets"
],
"author": "Marcin Chudy",
"license": "MIT",
"dependencies": {
"encoding": "^0.1.12",
"flat": "^5.0.0",
"googleapis": "^46.0.0",
"lodash": "^4.17.15",
"papaparse": "^5.1.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"@types/flat": "0.0.28",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.18",
"@types/papaparse": "^5.0.3",
"@types/yargs": "^13.0.3",
"typescript": "^3.7.3"
}
}