-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "google-drive-sync",
"version": "7.0.0",
"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": "jest"
},
"repository": {
"type": "git",
"url": "git@githubcom:jarib/google-drive-sync.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"babel": {
"presets": [
"@babel/env"
]
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/*-test.js"
]
},
"author": "Jari Bakken <jari.bakken@gmail.com>",
"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",
"archieml-new": "npm:archieml@^0.5.0",
"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-jest": "^29.7.0",
"jest": "^29.7.0",
"node-fetch": "^2.6.1"
}
}