-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.84 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
{
"name": "blogger-post",
"version": "2.0.7",
"description": "cli and api for managing blogger posts with the blogger api v3 with authentication. The cli is the default use of the api with clientId and clientSecret specified using package.json or through environment variables and storage of tokens specified in the package.json.",
"keywords": [
"blogger"
],
"directories": {
"lib": "dist/lib"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc --watch"
},
"bin": {
"bloggerPost-update": "./dist/bin/update.js",
"bloggerPost-updateAndView": "./dist/bin/updateAndView.js",
"bloggerPost-updateRevert": "./dist/bin/updateRevert.js",
"bloggerPost-updatePublish": "./dist/bin/updatePublish.js",
"bloggerPost-updatePublishAndView": "./dist/bin/updatePublishAndView.js",
"bloggerPost-insert": "./dist/bin/insert.js",
"bloggerPost-insertAndView": "./dist/bin/insertAndView.js",
"bloggerPost-insertAsDraft": "./dist/bin/insertAsDraft.js",
"bloggerPost-delete": "./dist/bin/delete.js",
"bloggerPost-revert": "./dist/bin/revert.js",
"bloggerPost-publish": "./dist/bin/publish.js",
"bloggerPost-publishAndView": "./dist/bin/publishAndView.js"
},
"author": {
"name": "Tony Hallett"
},
"homepage": "https://github.com/tonyhallett/bloggerPost",
"bugs": "https://github.com/tonyhallett/bloggerPost/issues",
"repository": "github:tonyhallett/bloggerPost",
"engines": {
"node": ">=6.5"
},
"license": "ISC",
"dependencies": {
"crypto-random-string": "^1.0.0",
"fs-extra": "^5.0.0",
"googleapis": "^28.1.0",
"opn": "^5.3.0",
"portfinder": "^1.0.13"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/node": "^7.0.60",
"@types/opn": "^5.1.0"
}
}