forked from 3846masa/upload-gphotos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "upload-gphotos",
"version": "1.3.1",
"description": "Upload to Google Photos",
"main": "lib/index.js",
"bin": {
"upload-gphotos": "lib/cli.js"
},
"nexe": {
"input": "./lib/cli.js",
"output": "upload-gphotos^$",
"nodeMakeArgs": [
"-j",
"4"
],
"browserify": {
"requires": [],
"excludes": [
"canvas"
]
},
"runtime": {
"framework": "node",
"version": "6.9.2",
"ignoreFlags": true
}
},
"dependencies": {
"cheerio": "0.22.0",
"co": "4.6.0",
"colors": "1.1.2",
"fs-promise": "1.0.0",
"jsdom": "9.9.1",
"log4js": "1.1.0",
"progbar": "1.1.1",
"progress": "1.1.8",
"read": "1.0.7",
"request": "2.79.0",
"request-promise": "4.1.1",
"tough-cookie": "2.3.2",
"yargs": "6.6.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-async-to-module-method": "6.16.0",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"babel-preset-env": "1.1.7",
"esdoc": "0.5.2",
"esdoc-importpath-plugin": "0.1.0",
"eslint": "3.13.1",
"nexe": "1.1.2",
"npm-check-updates": "2.8.9",
"npm-run-all": "4.0.0",
"sane": "1.5.0",
"source-map-support": "0.4.8"
},
"scripts": {
"build": "npm-run-all --parallel build:code build:doc",
"build:code": "npm-run-all build:babel build:nexe",
"build:babel": "babel src --out-dir lib",
"build:doc": "esdoc -c ./esdoc.json",
"build:nexe": "nexe",
"watch": "sane \"npm-run-all --parallel build:babel build:doc\" src --glob='**/*.js'",
"watch:babel": "npm run build:babel --source-maps",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"author": "3846masa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/3846masa/upload-gphotos.git"
},
"bugs": {
"url": "https://github.com/3846masa/upload-gphotos/issues"
},
"homepage": "https://github.com/3846masa/upload-gphotos#readme"
}