-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 908 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 908 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": "chii",
"version": "0.34.0",
"description": "tools to bundle openapi spec, not used in our server",
"private": true,
"scripts": {
"format": "prettier -w --list-different ./",
"test": "node openapi/test.js",
"build-common": "node scripts/build-common.mjs",
"build": "node ./openapi/build.js"
},
"prettier": {
"printWidth": 120
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"js-yaml": "^4.1.1",
"lodash": "^4.18.1",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"colors": "^1.4.0",
"oas-validator": "^5.0.8",
"prettier": "^3.8.3"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"**_test.go",
".git"
],
"legacyWatch": true,
"delay": 2000,
"exec": "task web",
"ext": "go,json,html"
},
"packageManager": "yarn@1.22.22"
}