-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
50
51
52
53
54
55
56
57
{
"name": "bicep-deploy",
"description": "Bicep Deploy GitHub Action",
"version": "0.0.1",
"author": "Microsoft",
"homepage": "https://github.com/azure/bicep-deploy",
"repository": {
"type": "git",
"url": "git+https://github.com/azure/bicep-deploy.git"
},
"bugs": {
"url": "https://github.com/azure/bicep-deploy/issues"
},
"keywords": [
"bicep",
"arm templates"
],
"type": "commonjs",
"main": "./dist/index.cjs",
"module": "./dist/index.cjs",
"exports": {
".": "./dist/index.cjs"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsdown --config ./tsdown.config.ts",
"test": "vitest --config vitest.config.unit.ts",
"test:live": "vitest --config vitest.config.live.ts",
"lint": "eslint src test test-live ./packages/bicep-deploy-common/src ./packages/bicep-deploy-common/test",
"lint:fix": "eslint src test test-live ./packages/bicep-deploy-common/src ./packages/bicep-deploy-common/test --fix"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@azure/bicep-deploy-common": "file:packages/bicep-deploy-common"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@vitest/eslint-plugin": "^1.4.3",
"esbuild": "^0.25.8",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-prettier": "^5.5.4",
"ts-node": "^10.9.2",
"tsdown": "^0.16.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^4.1.1",
"yaml": "^2.8.3"
}
}