-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.28 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
{
"name": "asyncapi-format",
"version": "1.1.1",
"description": "Format an AsyncAPI document by ordering, formatting and filtering fields.",
"keywords": [
"asyncapi",
"format",
"sort",
"order",
"filter",
"rename",
"case",
"cli"
],
"homepage": "https://github.com/thim81/asyncapi-format#readme",
"bugs": {
"url": "https://github.com/thim81/asyncapi-format/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thim81/asyncapi-format.git"
},
"license": "MIT",
"author": "Tim Haselaars",
"main": "bin/cli.js",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"asyncapi-format.js",
"util-log-output.js",
"util-types.js",
"defaultSort.json",
"defaultFilter.json",
"defaultSortComponents.json",
"package-lock.json"
],
"bin": {
"asyncapi-format": "bin/cli.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --colors --verbose --reporters=default --collectCoverage --no-cache",
"release": "np --branch main"
},
"dependencies": {
"case-anything": "^2.1.5",
"commander": "^7.1.0",
"js-yaml": "^4.1.0",
"traverse": "^0.6.6"
},
"devDependencies": {
"jest": "^27.4.7"
},
"engines": {
"node": ">=12"
}
}