-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 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
58
59
60
61
62
{
"name": "azure-devops-bicep-task",
"version": "0.6.1",
"description": "Tasks for installing Bicep CLI and running Bicep CLI build commands",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"coverage": "jest --collectCoverage",
"build": "npx tsc",
"lint": "eslint **/*.ts --fix",
"lint:no-fix": "eslint **/*.ts --quiet",
"publish": "npx -y tfx-cli extension create --manifest-globs vss-extension.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint **/*.ts --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/piraces/azure-devops-bicep-task.git"
},
"keywords": [
"task",
"azuredevops",
"pipelines"
],
"author": "Raúl Piracés",
"license": "MIT",
"bugs": {
"url": "https://github.com/piraces/azure-devops-bicep-task/issues"
},
"homepage": "https://github.com/piraces/azure-devops-bicep-task#readme",
"dependencies": {
"@eslint/js": "^9.39.2",
"axios": "^1.15.0",
"azure-pipelines-task-lib": "^5.2.6",
"azure-pipelines-tool-lib": "^2.0.10",
"glob": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/q": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"ts-jest": "^29.2.0",
"typescript": "^5.7.0"
}
}