-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
61
62
63
64
65
66
67
68
{
"name": "csv2gsheets",
"version": "2.1.0",
"description": "CLI tool to convert local CSV files into Google Sheets files in a designated Google Drive folder.",
"type": "module",
"engines": {
"node": ">=18.18.0 || >=20.9.0"
},
"exports": "./build/src/index.js",
"main": "build/src/index.js",
"bin": {
"c2g": "build/src/index.js",
"csv2gsheets": "build/src/index.js"
},
"files": [
"docs",
"build/src"
],
"scripts": {
"build": "npx tsc && npm run postbuild",
"faker": "node faker/faker.mjs",
"postbuild": "node postbuild/postbuild.mjs",
"test": "npm run build && npx jest",
"test-only": "npx jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttsukagoshi/csv2gsheets.git"
},
"keywords": [
"google-sheets",
"csv",
"google-drive-api",
"cli"
],
"author": "ttsukagoshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ttsukagoshi/csv2gsheets/issues"
},
"homepage": "https://github.com/ttsukagoshi/csv2gsheets#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.6.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.0",
"commander": "^12.1.0",
"googleapis": "^140.0.0",
"inquirer": "^9.3.2",
"loud-rejection": "^2.2.0",
"read-package-up": "^11.0.0",
"update-notifier": "^7.0.0"
}
}