This repository has been archived by the owner on Mar 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "gist-it",
"main": "./lib/gist-it",
"version": "0.9.2",
"private": true,
"description": "Quickly and easily share your code on gist.github.com",
"activationCommands": {
"atom-workspace": [
"settings-view:open",
"gist-it:gist-current-file",
"gist-it:gist-selection",
"gist-it:gist-open-buffers"
]
},
"repository": "https://github.com/rpowelll/gist-it",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.3"
},
"keywords": [
"github",
"gist",
"share"
],
"configSchema": {
"userToken": {
"order": 1,
"title": "OAuth token",
"description": "Enter an OAuth token to have Gists posted to your GitHub account. This token must include the gist scope.",
"type": "string",
"default": ""
},
"newGistsDefaultToPrivate": {
"order": 2,
"title": "New Gists default to private",
"description": "Make Gists private by default.",
"type": "boolean",
"default": false
},
"gitHubEnterpriseHost": {
"order": 3,
"title": "GitHub Enterprise Host",
"description": "If you want to publish Gists to a GitHub Enterprise instance, enter the hostname here.",
"type": "string",
"default": ""
},
"useHttp": {
"order": 4,
"title": "Use HTTP",
"description": "Enable if your GitHub Enterprise instance is only available via HTTP, not HTTPS.",
"type": "boolean",
"default": false
},
"openAfterCreate": {
"order": 5,
"title": "Open new Gist after create",
"description": "Automatically open newly created Gists in the default web browser.",
"type": "boolean",
"default": false
}
}
}