forked from asyncapi/glee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.03 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
{
"name": "@asyncapi/glee",
"version": "0.22.0",
"description": "The AsyncAPI framework",
"exports": "./dist/moduleIndex.js",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"bin": {
"glee": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"dev": "tsc --watch",
"docs": "typedoc --readme none --githubPages false --out docs/reference --entryPointStrategy expand ./src",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"generate:assets": "npm run docs",
"lint": "eslint --max-warnings 10 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 10 --config .eslintrc . --fix",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:dev": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"keywords": [
"asyncapi",
"framework"
],
"author": "Fran Mendez",
"publishConfig": {
"access": "public"
},
"jest": {
"moduleNameMapper": {
"^nimma/legacy$": "<rootDir>/../../node_modules/nimma/dist/legacy/cjs/index.js",
"^nimma/(.*)": "<rootDir>/../../node_modules/nimma/dist/cjs/$1"
}
},
"license": "Apache-2.0",
"dependencies": {
"@asyncapi/generator": "^1.9.18",
"@asyncapi/html-template": "^0.24.10",
"@asyncapi/markdown-template": "^1.1.1",
"@asyncapi/parser": "^1.13.1",
"@types/jest": "^27.4.0",
"@types/qs": "^6.9.7",
"ajv": "^6.12.6",
"async": "^3.2.0",
"better-ajv-errors": "^0.7.0",
"bufferutil": "^4.0.3",
"chalk": "^4.1.1",
"cross-spawn": "^7.0.3",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"emojis": "^1.0.10",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-security": "^1.4.0",
"got": "^12.5.3",
"kafkajs": "^2.2.3",
"mqtt": "^4.3.7",
"path-to-regexp": "^6.2.0",
"qs": "^6.11.0",
"redis": "^4.0.2",
"socket.io": "^4.1.2",
"terminal-image": "^2.0.0",
"typescript": "^4.5.4",
"uri-templates": "^0.2.0",
"utf-8-validate": "^5.0.5",
"uuid": "^8.3.2",
"walkdir": "^0.4.1",
"word-wrap": "^1.2.3",
"ws": "^7.4.6"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/async": "^3.2.11",
"@types/debug": "^4.1.7",
"@types/socket.io": "^3.0.2",
"@types/uri-templates": "^0.1.31",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"all-contributors-cli": "^6.14.2",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "^0.19.0",
"fs-extra": "^10.1.0",
"jest": "^27.4.7",
"jest-extended": "^1.2.0",
"jsdoc-to-markdown": "^5.0.3",
"markdown-toc": "^1.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"tsc-watch": "^4.5.0",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.11.8",
"unixify": "^1.0.0"
}
}