generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
77
78
79
80
{
"name": "@solace-labs/ep-async-api-importer",
"version": "0.61.0",
"description": "Async API Importer for Solace Event Portal",
"bin": {
"ep-async-api-importer": "./dist/cli.js"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:SolaceLabs/solace-tools-typescript",
"directory": "packages/ep-async-api-importer"
},
"bugs": {
"url": "github:SolaceLabs/solace-tools/issues"
},
"author": "Solace Corporation",
"contributors": [
{
"name": "Ricardo Gomez-Ulmke"
}
],
"keywords": [
"solace",
"event portal",
"asyncapi",
"api management"
],
"scripts": {
"compile": "tsc",
"build": "tsup src/cli.ts --format cjs",
"clean": "rm -rf dist && rm -rf test/logs && rm -rf .turbo",
"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": "yarn build --watch",
"lint": "eslint .",
"lint:deprecated": "yarn lint | grep deprecated",
"start:dev": "ts-node src/cli.ts",
"start": "yarn build && node dist/cli.js"
},
"publishConfig": {
"access": "public",
"cache": ".cache/.npm",
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"files": [
"dist/**"
],
"devDependencies": {
"@internal/tools": "*",
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@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"
},
"dependencies": {
"@solace-labs/ep-asyncapi": "^0.59.0",
"@solace-labs/ep-sdk": "^0.63.0",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^9.3.0",
"dotenv": "^16.0.1",
"figlet": "^1.5.2",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"pino": "^8.4.2",
"pino-pretty": "^9.0.1",
"semver": "^7.3.8",
"uuid": "^9.0.0"
}
}