forked from asyncapi/glee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.94 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
{
"name": "@asyncapi/glee",
"version": "0.10.4",
"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 2 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 2 --config .eslintrc . --fix",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"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"
},
"license": "Apache-2.0",
"dependencies": {
"@asyncapi/generator": "^1.8.0",
"@asyncapi/parser": "^1.13.1",
"@types/jest": "^27.4.0",
"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",
"mqtt": "^4.2.6",
"node-ipc": "^10.0.1",
"path-to-regexp": "^6.2.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": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@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",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"all-contributors-cli": "^6.14.2",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "^0.5.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",
"semantic-release": "^17.2.2",
"ts-jest": "^27.1.2",
"tsc-watch": "^4.5.0",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"unixify": "^1.0.0"
}
}