-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 1.18 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
41
42
43
44
45
{
"name": "arm-deploy",
"version": "1.0.0",
"description": "GitHub Action task to deploy an Azure Resource Manager (ARM) template",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"package": "ncc build --license licenses.txt src/run.ts",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/arm-deploy.git"
},
"keywords": [
"arm templates",
"bicep"
],
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@types/assert": "^1.5.10",
"@types/node": "^22.5.5"
}
}