generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.39 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
{
"name": "@solace-labs/ep-migrate",
"version": "0.7.0",
"description": "Migration Tool for Solace Event Portal V1 to V2",
"bin": {
"ep-migrate": "./dist/cli.js"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:SolaceLabs/ep-migrate",
"directory": "packages/ep-migrate"
},
"bugs": {
"url": "github:SolaceLabs/ep-migrate/issues"
},
"author": "Solace Corporation",
"contributors": [
{
"name": "Ricardo Gomez-Ulmke"
},
{
"name": "Nils Eckert"
}
],
"keywords": [
"solace",
"event portal",
"migrate"
],
"scripts": {
"compile": "tsc",
"build": "tsup src/cli.ts --format cjs && cp -r ./src/files ./dist",
"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 . --max-warnings=0",
"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/cli-spinner": "^0.2.1",
"@types/figlet": "^1.5.5",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.191",
"@types/node": "^20.2.5",
"@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-sdk": "^0.63.0",
"@solace-labs/ep-v1-openapi-node": "^0.1.4",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"cli-spinner": "^0.2.10",
"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",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"pino": "^8.4.2",
"pino-pretty": "^9.0.1",
"semver": "^7.3.8",
"short-uuid": "^4.2.2",
"uuid": "^9.0.0"
}
}