-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
75 lines (75 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
{
"name": "@asyncapi/bundler",
"version": "0.6.4",
"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",
"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 <[email protected]>",
"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"
],
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@types/json-schema": "^7.0.11",
"@ungap/structured-clone": "^1.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.2",
"@types/ungap__structured-clone": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"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",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}