forked from SolaceLabs/solace-tools-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
60
61
62
63
{
"name": "@solace-labs/ep-openapi-node",
"version": "2.53.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"description": "Solace Event Portal OpenAPI Client for NodeJS (Typescript), v2.0.15",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:SolaceLabs/solace-tools",
"directory": "packages/ep-openapi-node"
},
"bugs": {
"url": "github:SolaceLabs/issues"
},
"author": "Solace Corporation",
"contributors": [
{
"name": "Ricardo Gomez-Ulmke",
"email": "ricardo.gomez-ulmke@solace.com"
}
],
"keywords": [
"solace",
"event portal",
"event portal api"
],
"scripts": {
"compile": "yarn build:src && tsc",
"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",
"test:x": "yarn build:test && . ./test/source.env.sh && mocha --config test/.mocharc.yml test/**/**.x-spec.ts && unset_source_env",
"dev:watch": "npm run build --watch"
},
"typedoc": {
"entryPoint": "./generated-src/index.ts",
"displayName": "Event Portal OpenAPI Node",
"readmeFile": "./typedoc.README.md",
"tsconfig": "tsconfig.json"
},
"publishConfig": {
"access": "public",
"cache": ".cache/.npm",
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"files": [
"dist/**"
],
"devDependencies": {
"@internal/tools": "*",
"openapi-typescript-codegen": "^0.19.0"
},
"dependencies": {
"abort-controller": "^3.0.0",
"fetch-with-proxy": "^3.0.1",
"form-data": "^4.0.0"
}
}