forked from asyncapi/bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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
{
"name": "@asyncapi/bundler",
"version": "0.3.11",
"description": "Bundle references from an single AsyncAPI document into a single file.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"docs": "jsdoc2md --files \"src/**/*.ts\" --configure ./jsdoc2md.json > API.md",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"generate:assets": "npm run build && npm run docs && npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md",
"prepublishOnly": "npm run generate:assets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/bundler.git"
},
"keywords": [],
"author": "Souvik De <souvikde.ns@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/bundler/issues"
},
"homepage": "https://github.com/asyncapi/bundler",
"publishConfig": {
"access": "public"
},
"files": [
"API.md",
"LICENSE",
"README.md",
"/lib"
],
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@types/json-schema": "^7.0.11",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^6.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.1.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.24.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^27.1.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.15.0",
"jest": "^29.1.2",
"jsdoc": "^3.6.11",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.1.1",
"markdown-toc": "^1.2.0",
"semantic-release": "^18.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}