-
-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathpackage.json
111 lines (111 loc) · 3.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@asyncapi/modelina-cli",
"description": "CLI to work with Modelina",
"version": "4.0.0-next.65",
"bin": {
"modelina": "./bin/run_bin"
},
"bugs": "https://github.com/asyncapi/modelina/issues",
"dependencies": {
"@asyncapi/modelina": "^4.0.0-next.64",
"@oclif/core": "^3.26.0",
"@oclif/errors": "^1.3.6",
"@oclif/plugin-not-found": "^3.1.1",
"@oclif/plugin-autocomplete": "^3.0.16",
"@oclif/plugin-help": "^6.0.21",
"@oclif/plugin-plugins": "^5.0.16",
"@oclif/plugin-version": "^2.0.17",
"js-yaml": "^4.1.0",
"node-fetch": "^2.0.0"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.2.8",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/node-fetch": "^2.6.11",
"@types/rimraf": "^4.0.5",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^51.0.1",
"mocha": "^10",
"nyc": "^15.1.0",
"oclif": "^4.12.3",
"rimraf": "^5.0.5",
"shx": "^0.3.4",
"simple-git": "^3.16.0",
"ts-node": "^10.9.2",
"typescript": "4.6.4",
"markdown-toc": "^1.2.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/README.md"
],
"homepage": "https://github.com/asyncapi/modelina",
"keywords": [
"modelina",
"cli",
"modelina-cli"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"oclif": {
"commands": "./lib/commands",
"bin": "modelina",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"macos": {
"identifier": "com.asyncapi.modelina"
},
"topicSeparator": " ",
"topics": {
"config:context": {},
"config": {
"description": "CLI config settings"
},
"generate": {
"description": "Generate models"
}
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/modelina.git"
},
"scripts": {
"build": "rimraf lib && tsc && oclif manifest && echo \"Build Completed\"",
"dev": "tsc --watch",
"generate:assets": "npm run generate:commands",
"generate:commands": "oclif readme --readme-path=\"./README.md\" --output-dir=\"./\" --repository-prefix=\"<%- repo %>/blob/v<%- version %>/modelina-cli/<%- commandPath %>\"",
"generate:readme:toc": "markdown-toc -i README.md",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "npm run lint -- --fix",
"pack:all": "npm run pack:macos && npm run pack:linux && npm run pack:tarballs && npm run pack:windows",
"pack:macos": "oclif pack macos && npm run pack:rename",
"pack:linux": "oclif pack deb && npm run pack:rename",
"pack:tarballs": "oclif pack tarballs -t linux-x64 && npm run pack:rename",
"pack:windows": "oclif pack win && npm run pack:rename",
"pack:rename": "node scripts/releasePackagesRename.js",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_ENV=development CUSTOM_CONTEXT_FILENAME=\"test.asyncapi-modelina\" CUSTOM_CONTEXT_FILE_LOCATION=\"\" nyc --extension .ts mocha \"test/**/*.test.ts\"",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
}
}