generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@solace-labs/sempv2-config-openapi-node",
"version": "1.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Solace SempV2 Config OpenAPI Client for NodeJS (Typescript), v2.30",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:SolaceLabs/solace-tools-typescript",
"directory": "packages/sempv2-config-openapi-node"
},
"bugs": {
"url": "github:SolaceLabs/issues"
},
"author": "Solace Corporation",
"contributors": [
{
"name": "Ricardo Gomez-Ulmke"
}
],
"keywords": [
"solace",
"brokers",
"sempv2 api"
],
"scripts": {
"build:src": "ts-node bin/build-src.ts",
"build": "yarn build:src && tsup generated-src/index.ts --format esm,cjs, --dts",
"clean": "rm -rf generated-src && rm -rf dist && rm -rf test/logs && rm -rf .turbo",
"build:test": "yarn build:src && yarn tsc",
"test": "yarn build:test && . ./test/source.env.sh && nyc mocha --config test/.mocharc.yml test/**/**.spec.ts && unset_source_env"
},
"typedoc": {
"entryPoint": "./generated-src/index.ts",
"displayName": "SempV2 Config OpenAPI Node",
"readmeFile": "./typedoc.README.md",
"tsconfig": "tsconfig.json"
},
"publishConfig": {
"access": "public",
"cache": ".cache/.npm",
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"files": [
"dist/**"
],
"dependencies": {
"abort-controller": "^3.0.0",
"fetch-with-proxy": "^3.0.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@internal/tools": "*",
"openapi-typescript-codegen": "^0.19.0"
}
}