-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "hcloud-openapi",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"bin": {
"hcloud-apify": "./lib/index.js"
},
"scripts": {
"build": "tsc -p .",
"convert": "ts-node ./src/index.ts",
"preinstall": "npx npm-force-resolutions"
},
"author": "Maximilian Köstler",
"license": "MIT",
"dependencies": {
"@openapi-contrib/json-schema-to-openapi-schema": "^1.3.0",
"ibm-openapi-validator": "^0.71.0",
"needle": "^2.9.1",
"object-hash": "^2.2.0",
"object-path": "^0.11.8",
"pluralize": "^8.0.0",
"valid-url": "^1.0.9",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/ibm-openapi-validator": "^0.15.1",
"@types/needle": "^2.5.3",
"@types/node": "^14.18.18",
"@types/object-hash": "^1.3.4",
"@types/object-path": "^0.11.1",
"@types/pluralize": "0.0.29",
"@types/valid-url": "^1.0.3",
"@types/yargs": "^15.0.14",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.10"
},
"resolutions": {
"dot-prop": ">=5.1.1"
}
}