-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 850 Bytes
/
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
{
"name": "tryhackme-workflow",
"version": "1.0.0",
"description": "A simple github action to retrieve tryhackme static badge image and display it on your profile README",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p4p1/tryhackme-workflow.git"
},
"author": "p4p1",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/p4p1/tryhackme-workflow/issues"
},
"homepage": "https://github.com/p4p1/tryhackme-workflow#readme",
"devDependencies": {
"eslint": "^8.0.1",
"node": "^16.0.0"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@vercel/ncc": "^0.31.1",
"ncc": "^0.3.6",
"node-fetch": "^2.6.1"
}
}