forked from szenius/set-timezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 864 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
34
35
36
37
{
"name": "timezone-action",
"version": "1.1",
"description": "Set timezone",
"main": "index.js",
"packageManager": "[email protected]",
"engines": {
"node": "20.11.1"
},
"type": "module",
"scripts": {
"build": "ncc build index.js",
"prettier": "prettier --check ./",
"prettier:write": "prettier --write ./",
"run": "node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MathRobin/timezone-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MathRobin/timezone-action/issues"
},
"homepage": "https://github.com/MathRobin/timezone-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"execa": "8.0.1"
},
"devDependencies": {
"@vercel/ncc": "0.38.1",
"jest": "29.7.0",
"prettier": "3.2.5"
}
}