-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "dokube",
"description": "Use DigitalOcean Kubernetes in GitHub Actions",
"scripts": {
"package": "ncc build src/main.ts -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matootie/dokube.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"DigitalOcean",
"Kubernetes"
],
"contributors": [
{
"name": "Mateja Lasan",
"email": "mateja@lasan.ca",
"url": "https://github.com/matootie"
},
{
"name": "Stephen Edwards",
"email": "sventi555@gmail.com",
"url": "https://github.com/sventi555"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/matootie/dokube/issues"
},
"homepage": "https://github.com/matootie/dokube#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"axios": "^0.26.0"
},
"jshintConfig": {
"esversion": 10
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
}
}