forked from jarib/google-drive-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.55 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": "google-drive-sync",
"version": "1.1.3",
"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 --compilers js:babel-core/register test/*"
},
"repository": {
"type": "git",
"url": "git@githubcom:jarib/google-drive-sync.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"babel": {
"presets": [
"env",
"stage-0"
]
},
"author": "Jari Bakken <[email protected]>",
"license": "BSD-3-Clause",
"keywords": [
"google",
"drive",
"google-drive",
"archieml",
"json",
"docs",
"sheets",
"spreadsheets",
"excel",
"xlsx"
],
"dependencies": {
"archieml": "^0.4.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-polyfill": "^6.7.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.3.4",
"daemon": "^1.1.0",
"debug": "^3.0.1",
"fs-extra": "^4.0.2",
"googleapis": "^22.1.0",
"html-entities": "^1.2.0",
"htmlparser2": "^3.9.0",
"lodash.zip": "^4.0.0",
"moment": "^2.12.0",
"ms": "^2.0.0",
"stream-buffers": "^3.0.0",
"underscore": "^1.8.3",
"xlsx": "^0.11.3",
"yargs": "^9.0.1"
},
"devDependencies": {
"mocha": "^3.5.3",
"node-fetch": "^1.4.0"
}
}