generated from actions/hello-world-javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 837 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
32
33
{
"name": "cinotify-email-action",
"version": "1.6.0",
"description": "This action prints \"Hello World\" or \"Hello\" + the name of a person to greet to the log.",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/hello-world-javascript-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/actions/hello-world-javascript-action/issues"
},
"homepage": "https://github.com/actions/hello-world-javascript-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"mime": "^3.0.0"
},
"devDependencies": {
"vitest": "^1.4.0"
}
}