-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.33 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@solace-community/stm",
"version": "0.0.75",
"description": "Solace Try-Me Command Line Tool",
"repository": {
"type": "git",
"url": "https://github.com/SolaceLabs/solace-tryme-cli"
},
"keywords": [
"solace",
"tryme",
"try-me",
"pub/sub",
"pub/recv",
"publish/subscribe",
"publish/receive",
"publish",
"subscribe"
],
"scripts": {
"dev": "tsc -w",
"index": "ts-node bin/index.js",
"build": "tsc",
"package": "pkg package.json",
"publish": "npm run build; npm publish --access public"
},
"main": "./dist/src/index.js",
"bin": {
"stm": "./bin/index.js"
},
"license": "Apache-2.0",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@asyncapi/parser": "^3.2.1",
"@base2/pretty-print-object": "^1.0.2",
"@faker-js/faker": "^8.4.1",
"@solace-labs/solace-data-generator": "^1.0.13",
"@stoplight/spectral-core": "^1.19.4",
"@stoplight/spectral-functions": "^1.9.3",
"@types/long": "^5.0.0",
"@types/node": "^20.8.9",
"ascii-table": "^0.0.9",
"axios": "0.27.0",
"chalk": "~4.1.2",
"commander": "^11.1.0",
"core-js": "^3.26.0",
"enquirer": "^2.4.1",
"express": "^4.19.2",
"form-data": "^4.0.0",
"hexdump-nodejs": "^0.1.0",
"http": "^0.0.1-security",
"js-yaml": "^4.1.0",
"json-schema-library": "^10.0.0-rc1",
"node-localstorage": "^3.0.5",
"opener": "^1.5.2",
"pkg": "^5.8.1",
"prompt-sync": "^4.2.0",
"readline": "^1.3.0",
"signale": "^1.4.0",
"sleep-promise": "^9.1.0",
"solclientjs": "^10.17.0",
"sync-fetch": "^0.5.2",
"ts-node": "^10.9.1",
"uuidv4": "^6.2.13",
"zip-lib": "^1.0.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/concat-stream": "^2.0.0",
"@types/form-data": "^2.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node-fetch": "^2.6.11",
"@types/signale": "^1.4.7",
"typescript": "^4.7.3"
},
"signale": {
"displayLabel": false,
"displayDate": false,
"displayTimestamp": false
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64",
"node18-alpine-x64"
],
"outputPath": "release",
"assets": [
"node_modules/solclientjs/**/*.js",
"public/**/*",
"node_modules/axios/**/*.js"
]
}
}