-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "nomad-typescript",
"version": "0.1.2",
"description": "OpenAPI client for Nomad",
"author": "OpenAPI-Generator Contributors & Moritz Gehlhaar",
"repository": {
"type": "git",
"url": "https://github.com/geoextra/nomad-typescript.git"
},
"keywords": [
"fetch",
"typescript",
"openapi-client",
"openapi-generator"
],
"license": "MIT",
"main": "./dist/index.js",
"type": "commonjs",
"exports": {
".": "./dist/index.js"
},
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"generate": "openapi-generator-cli generate -i nomad-openapi/v1/openapi.yaml -g typescript -o . --additional-properties='npmName=nomad-typescript,platform=node'"
},
"dependencies": {
"node-fetch": "^2.6.9",
"@types/node-fetch": "^2.6.3",
"@types/node": "*",
"form-data": "^2.5.1",
"es6-promise": "^4.2.8",
"url-parse": "^1.5.10"
},
"devDependencies": {
"typescript": "^4.0",
"@types/url-parse": "1.4.4"
}
}