This repository was archived by the owner on Sep 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "action-vs-vsix-signer",
"version": "1.0.0",
"private": true,
"description": "Sign your Visual Studio extensions with ease!",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write ./src/**/*.ts",
"format-check": "prettier --check ./src/**/*.ts",
"lint": "eslint ./src/**/*.ts",
"package": "ncc build ./src/main.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalvinAllen/action-vs-vsix-signer"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Coding with Calvin",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.0.2",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-jest": "^27.2.3",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "3.3.3",
"ts-jest": "^27.1.2",
"typescript": "^4.9.5"
}
}