-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "@asyncapi/converter",
"version": "1.6.2",
"description": "Convert AsyncAPI documents from older to newer versions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "cross-env CI=true NODE_ENV=test jest --coverage",
"lint": "echo 'no linter configured yet'",
"generate:assets": "npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"keywords": [
"asyncapi",
"upgrade",
"version",
"convert"
],
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/converter-js.git"
},
"bugs": {
"url": "https://github.com/asyncapi/converter-js/issues"
},
"homepage": "https://github.com/asyncapi/converter-js#readme",
"publishConfig": {
"access": "public"
},
"author": "Fran Mendez <[email protected]> (fmvilas.com)",
"license": "Apache-2.0",
"dependencies": {
"@asyncapi/parser": "^3.1.0",
"js-yaml": "^3.14.1",
"path": "^0.12.7",
"postman2openapi": "^1.2.1"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}