generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@solace-labs/ep-sdk",
"version": "0.63.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Solace Event Portal SDK",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:SolaceLabs/solace-tools-typescript",
"directory": "packages/ep-sdk"
},
"bugs": {
"url": "github:SolaceLabs/solace-tools/issues"
},
"author": "Solace Corporation",
"contributors": [
{
"name": "Ricardo Gomez-Ulmke"
}
],
"keywords": [
"solace",
"event portal",
"asyncapi",
"api management"
],
"scripts": {
"check-types": "tsc --noEmit",
"compile": "tsc && yarn build:examples",
"build:examples": "tsc --project examples/tsconfig.json",
"build": "tsup src/index.ts --format esm,cjs, --dts && yarn build:examples",
"clean": "rm -rf dist && rm -rf test/logs && rm -rf .turbo && rm -rf examples/dist",
"build:test": "yarn build",
"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": "tsup src/index.ts --format esm,cjs, --dts --watch",
"lint": "eslint .",
"lint:deprecated": "yarn lint | grep deprecated"
},
"typedoc": {
"entryPoint": "src/index.ts",
"displayName": "Event Portal SDK",
"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": "*",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.191",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-deprecation": "^1.3.3",
"pino": "^8.8.0"
},
"dependencies": {
"@solace-labs/ep-openapi-node": "^3.0.0",
"@solace-labs/ep-rt-openapi-node": "^1.1.0",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"semver": "^7.3.8",
"uuid": "^9.0.0"
}
}