-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "setup-nvc",
"version": "1.0.0",
"description": "GitHub Action to install NVC VHDL simulator",
"main": "index.js",
"scripts": {
"build": "ncc build --minify -o dist src/main.ts",
"test": "jest",
"format": "eslint --fix .",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickg/setup-nvc.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Nick Gasson",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickg/setup-nvc/issues"
},
"homepage": "https://github.com/nickg/setup-nvc#readme",
"type": "module",
"devDependencies": {
"@octokit/types": "^13.5.0",
"@stylistic/eslint-plugin": "^1.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^21.0.1"
}
}