-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "drone-status",
"displayName": "Drone Status",
"description": "Drone Status is a VSCode extension to check Drone build status.",
"version": "0.2.3",
"publisher": "oostrap",
"license": "MIT",
"icon": "icon.png",
"homepage": "https://github.com/Pietjan/drone-status",
"repository": {
"type": "git",
"url": "https://github.com/Pietjan/drone-status"
},
"categories": [
"Other"
],
"keywords": [
"Build Status",
"Drone",
"Drone CI",
"CI"
],
"engines": {
"vscode": "^1.38.0"
},
"activationEvents": [
"workspaceContains:**/.drone.yml",
"workspaceContains:**/.drone.yaml",
"workspaceContains:**/.drone.jsonnet"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Drone Status configuration",
"properties": {
"droneStatus.server": {
"type": "string",
"description": "Drone Server. Defaults to DRONE_SERVER environment variable",
"markdownDescription": "Drone Server. Defaults to `DRONE_SERVER` environment variable"
},
"droneStatus.token": {
"type": "string",
"description": "Drone token. Defaults to DRONE_TOKEN environment variable",
"markdownDescription": "Drone token. Defaults to `DRONE_TOKEN` environment variable"
},
"droneStatus.repo": {
"type": "string",
"description": "(Optional) Repository name. Defaults to your workspace folder name.",
"markdownDescription": "(Optional) Repository name. Defaults to your workspace folder name."
},
"droneStatus.owner": {
"type": "string",
"description": "(Optional) Repository owner. Defaults to username from API result.",
"markdownDescription": "(Optional) Repository owner. Defaults to username from API result."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.14",
"@types/vscode": "^1.38.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"mockserver": "^3.1.1",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
},
"dependencies": {
"axios": "^0.21.2"
}
}