-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 978 Bytes
/
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
{
"name": "yaml-dts-gen",
"version": "0.0.4",
"main": "index.js",
"repository": "https://github.com/mkusaka/yaml-dts-gen.git",
"author": "mkusaka <[email protected]>",
"license": "MIT",
"dependencies": {
"js-yaml": "^3.14.1",
"ts-morph": "^15.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.32",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"typescript": "*"
},
"bin": {
"yaml-dts-gen": "bin/gen"
},
"scripts": {
"test": "curl https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml -o petstore.yml && yarn build && bin/gen petstore.yml",
"build": "rm -rf dist && tsc",
"prepublishOnly": "yarn build && git push origin HEAD && git push --tags"
},
"files": [
"bin/gen",
"dist",
"cli.ts"
],
"keywords": [
"cli",
"type definition",
"generator",
"yaml",
"yml"
]
}