-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "setup-hemtt-action",
"version": "0.0.0",
"private": true,
"description": "Install HEMTT",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"package": "ncc build -o dist/main && ncc build src/post.ts -o dist/post",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arma-actions/hemtt.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "BrettMayson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@terascope/fetch-github-release": "^0.8.7"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/parser": "^6.7.5",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.51.0",
"eslint-plugin-github": "^4.10.1",
"js-yaml": "^4.1.0",
"prettier": "3.0.3",
"typescript": "^5.2.2"
}
}