-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "sync-gdrive",
"version": "1.2.0",
"description": "Module to synchronise a file or directory in Google Drive with the local file system",
"main": "dist/index.js",
"browser": false,
"bin": {
"sync-gdrive": "dist/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"sync-gdrive": "ts-node src/cli.ts",
"build": "tsc",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"test:integration": "mocha --exit --import=tsx -r esm test/*.ts",
"test:basic": "cross-env npm run build && npm run lint",
"test": "npm run test:basic"
},
"keywords": [
"sync",
"google-drive"
],
"repository": {
"type": "git",
"url": "[email protected]:ajmas/sync-gdrive.git"
},
"author": "Andre John Mas",
"license": "MIT",
"dependencies": {
"googleapis": "^134.0.0",
"mime": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/node": "^16.18.96",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^5.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"esm": "^3.2.25",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"files": [
"README.md",
"dist"
]
}