-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.67 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
69
{
"name": "google-drive-sync",
"version": "6.0.1",
"description": "Share your Google Drive files with this daemon to have them saved to disk as JSON.",
"bin": {
"google-drive-sync": "lib/cli.js",
"google-drive-sync-convert": "lib/convert-cli.js"
},
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepare": "npm run compile",
"test": "mocha -r @babel/register test/*"
},
"repository": {
"type": "git",
"url": "git@githubcom:jarib/google-drive-sync.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"babel": {
"presets": [
"@babel/env"
]
},
"author": "Jari Bakken <[email protected]>",
"license": "BSD-3-Clause",
"keywords": [
"google",
"drive",
"google-drive",
"archieml",
"json",
"docs",
"sheets",
"spreadsheets",
"excel",
"xlsx"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.478.0",
"archieml": "^0.4.2",
"bluebird": "^3.7.2",
"daemon": "^1.1.0",
"debug": "^4.1.1",
"fs-extra": "^4.0.3",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"html-entities": "^1.2.0",
"htmlparser2": "^3.10.1",
"lodash.zip": "^4.0.0",
"moment": "^2.24.0",
"ms": "^2.1.2",
"stream-buffers": "^3.0.2",
"underscore": "^1.9.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.1"
}
}