-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "github-actions-locally",
"displayName": "Github Actions Locally [Beta]",
"publisher": "alphaxek",
"icon": "img/GAL-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/alphaxek/github-actions-locally"
},
"description": "Run github actions locally",
"version": "0.0.7",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:github-actions-locally.gal"
],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "github-actions-locally.gal",
"title": "Github Actions Locally"
}]
},
"scripts": {
"lint": "eslint .",
"pretest": "pnpm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.73.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"eslint": "^8.26.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.8.4",
"@vscode/test-electron": "^2.2.0"
},
"dependencies": {
"express": "4.18.2",
"is-docker": "3.0.0",
"cors": "2.8.5"
}
}