-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
59
60
61
62
{
"name": "azure-devops-bicep-task",
"version": "0.5.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": {
"axios": "^1.6.0",
"azure-pipelines-task-lib": "^4.2.0",
"azure-pipelines-tool-lib": "2.0.2",
"glob": "^8.1.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/q": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^5.0.4"
}
}