forked from OpenAPITools/openapi-generator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.78 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "openapi-generator-cli",
"version": "0.0.37",
"description": "A npm package wrapper for OpenAPI Generator (https://github.com/OpenAPITools/openapi-generator), generates which API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)",
"private": false,
"keywords": [
"rest-api",
"rest-client",
"sdk",
"generator",
"restful-api",
"api",
"api-client",
"api-server",
"openapi3",
"openapi",
"oas",
"rest"
],
"bin": {
"openapi-generator": "./bin/openapi-generator"
},
"scripts": {
"clean": "rimraf ./dist",
"version:voskhod": "npm version patch",
"build:voskhod": "npm run clean && node bin/build-for-voskhod.js",
"publish:voskhod": "node bin/publish_to_voskhod_nexus.js",
"deploy:voskhod": "npm run version:voskhod && npm run build:voskhod && npm run publish:voskhod",
"build:all": "npm run clean && node bin/build-all",
"build:new": "npm run clean && node bin/build-new",
"publish": "node bin/publish && node bin/tag-latest"
},
"author": "HarmoWatch / Kay Schecker",
"bugs": {
"url": "https://github.com/openapitools/openapi-generator-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openapitools/openapi-generator-cli.git"
},
"publishConfig": {
"registry": "http://nexus.voskhod.local/nexus-2.7.0/content/repositories/npm-internal"
},
"homepage": "https://github.com/openapitools/openapi-generator-cli#readme",
"license": "Apache-2.0",
"files": [
"bin/openapi-generator",
"bin/openapi-generator.jar",
"README.md",
"LICENSE"
],
"devDependencies": {
"fs-extra": "7.0.1",
"rimraf": "2.6.2"
},
"dependencies": {
"compare-versions": "3.4.0"
}
}