forked from felixrieseberg/vsc-travis-ci-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vsc-travis-ci-status",
"displayName": "Travis CI Status",
"description": "Check your project's Travis CI status from Visual Studio Code",
"version": "1.0.5",
"publisher": "felixrieseberg",
"engines": {
"vscode": "^1.0.0"
},
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"Travis",
"Travis CI",
"Build Status",
"CI"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#A1A0A0",
"theme": "light"
},
"activationEvents": [
"onCommand:extension.updateTravis",
"onCommand:extension.openInTravis",
"workspaceContains:.travis.yml"
],
"bugs": {
"url": "https://github.com/felixrieseberg/vsc-travis-ci-status/issues"
},
"homepage": "https://github.com/felixrieseberg/vsc-travis-ci-status/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/felixrieseberg/vsc-travis-ci-status.git"
},
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.updateTravis",
"title": "Travis CI: Update Status"
},
{
"command": "extension.openInTravis",
"title": "Travis CI: Open Project on Travis CI"
}
],
"configuration": {
"title": "Travis CI Project Settings",
"type": "object",
"properties": {
"travis.username": {
"type": "string",
"default": "",
"description": "Travis username for the project"
},
"travis.repository": {
"type": "string",
"default": "",
"description": "Travis repository name for the project"
},
"travis.pro": {
"type": "boolean",
"default": false,
"description": "Travis use pro or community"
},
"travis.github_oauth_token": {
"type": "string",
"default": "",
"description": "Travis pro github token for authentication"
},
"travis.github_user": {
"type": "string",
"default": "",
"description": "Travis pro github user for authentication"
},
"travis.github_password": {
"type": "string",
"default": "",
"description": "Travis pro github password for authentication"
},
"travis.statusPolling": {
"type": "boolean",
"default": true,
"description": "Whether build status should be polled"
},
"travis.statusPollingInterval": {
"type": "number",
"default": 60,
"description": "Number of seconds between status polling requests"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc && node ./node_modules/vscode/bin/compile",
"compile": "tsc && node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "^0.11.10"
},
"dependencies": {
"git-rev-2": "latest",
"global-tunnel": "^1.2.0",
"ini": "^1.3.4",
"open": "0.0.5",
"travis-ci": "^2.0.3"
}
}