-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.unit.ts",
"test:live": "jest --config jest.config.live.ts",
"package": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"lint": "eslint src test test-live",
"lint:fix": "eslint src test test-live --fix"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@azure/arm-resources": "^5.2.0",
"@azure/arm-resourcesdeploymentstacks": "^1.0.0",
"@azure/identity": "^4.6.0",
"bicep-node": "^0.0.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"yaml": "^2.7.0"
}
}