-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 916 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 916 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
34
35
36
37
38
39
{
"name": "hl2-panorama-openapi",
"version": "0.0.0",
"description": "OpenAPI specification for the hl2 Panorama API",
"author": "hl2",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/hl2/hl2-panorama-openapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hl2/hl2-panorama-openapi.git"
},
"bugs": {
"url": "https://github.com/hl2/hl2-panorama-openapi/issues"
},
"scripts": {
"format": "prettier --write '**/*.{json,md}'",
"validate": "swagger-cli validate openapi/spec.json"
},
"devDependencies": {
"husky": "1.3.1",
"lint-staged": "8.1.3",
"prettier": "1.16.4",
"swagger-cli": "2.2.1"
},
"prettier": {
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}