-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "@asyncapi/optimizer",
"version": "1.0.4",
"description": "This library will optimize the AsyncAPI specification file.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"dev": "tsc --watch",
"docs": "jsdoc2md lib/Optimizer.js -f lib/**/*.js > API.md",
"example": "tsc && node examples/index.js",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"generate:readme:toc": "markdown-toc -i README.md",
"generate:assets": "npm run build && npm run docs && npm run generate:readme:toc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/optimizer.git"
},
"author": "Khuda Dad Nomani",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/optimizer/issues"
},
"homepage": "https://github.com/asyncapi/optimizer#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.3",
"@types/lodash": "^4.14.171",
"@types/merge-deep": "^3.0.0",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"jest": "^29.6.1",
"jsdoc-to-markdown": "^7.0.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^29.1.1",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/parser": "^3.2.2",
"@types/debug": "^4.1.8",
"debug": "^4.3.4",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^10.1.0",
"lodash": "^4.17.21",
"merge-deep": "^3.0.3",
"yaml": "^2.3.1"
}
}