-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 798 Bytes
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
{
"name": "ansible-azure",
"version": "0.9.0",
"description": "Ansible for Azure",
"scripts": {
"ansible:lint": "ansible-lint -qq",
"test": "ansible-lint -qq",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stuartellis/ansible-azure.git"
},
"keywords": [
"ansible",
"azure"
],
"author": "Stuart Ellis <stuart@stuartellis.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stuartellis/ansible-azure/issues"
},
"homepage": "https://github.com/stuartellis/ansible-azure#readme",
"devDependencies": {
"husky": "^7.0.0",
"jsonlint": "^1.6.3",
"lint-staged": "^12.3.4"
},
"lint-staged": {
"**/*.json": "jsonlint -cq",
"**/*.{yml,yaml}": "ansible-lint -qq"
}
}