forked from 3846masa/upload-gphotos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
85
86
{
"name": "upload-gphotos",
"version": "1.0.6",
"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": "4.4.7",
"ignoreFlags": true
}
},
"dependencies": {
"cheerio": "0.22.0",
"co": "4.6.0",
"colors": "1.1.2",
"fs-promise": "0.5.0",
"jsdom": "9.8.3",
"log4js": "0.6.38",
"progbar": "1.1.1",
"progress": "1.1.8",
"read": "1.0.7",
"request": "2.76.0",
"request-promise": "4.1.1",
"tough-cookie": "2.3.2",
"yargs": "6.3.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "7.0.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.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"babel-preset-es2015-node4": "2.1.0",
"esdoc": "0.4.8",
"esdoc-es7-plugin": "0.0.3",
"esdoc-importpath-plugin": "0.0.1",
"eslint": "3.9.0",
"nexe": "1.1.2",
"npm-check-updates": "2.8.6",
"npm-run-all": "3.1.1",
"sane": "1.4.1",
"source-map-support": "0.4.6"
},
"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"
}