-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
51
52
53
54
55
56
57
{
"name": "@ramanjs/syncd",
"version": "0.1.2",
"description": "A CLI tool to sync your local directory with Google Drive",
"main": "dist/index.js",
"homepage": "https://github.com/ramanjs/syncd",
"scripts": {
"build": "rm -rf dist && tsc && chmod +x ./dist/index.js"
},
"bin": {
"syncd": "./dist/index.js"
},
"keywords": [
"backup",
"drive",
"google drive",
"terminal",
"cli"
],
"author": {
"name": "Ramanjeet Singh",
"email": "raman.s2662@gmail.com",
"url": "https://github.com/ramanjs"
},
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@google-cloud/local-auth": "^2.1.1",
"axios": "^1.4.0",
"commander": "^10.0.1",
"googleapis": "^105.0.0",
"listr": "^0.14.3",
"mime-types": "^2.1.35",
"sequelize": "^6.31.1",
"sqlite3": "^5.1.6",
"zen-observable": "^0.10.0"
},
"devDependencies": {
"@commander-js/extra-typings": "^10.0.3",
"@types/gapi": "^0.0.43",
"@types/listr": "^0.14.4",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.11.18",
"@types/zen-observable": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}