-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "@apiture/api-ref-resolver",
"version": "1.3.2",
"description": "Tool to merge multiple OpenAPI or AsyncAPI documents that use JSON Reference links (`$ref`) to reference API definition elements across source files.",
"main": "lib/src/index.js",
"bin": {
"arr": "lib/src/cli.js",
"api-ref-resolver": "lib/src/cli.js"
},
"files": [
"lib",
"src",
"package.json",
"README.md"
],
"scripts": {
"prepare": "npx tsc",
"compile": "npx tsc",
"test": "npx jest --collect-coverage test",
"coverage": "true",
"lint": "npx eslint --fix --ext .ts src test ",
"pipeline-lint": "npx eslint --ext .ts src test",
"clean": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "[email protected]:apiture/api-ref-resolver.git"
},
"keywords": [
"JSON",
"$ref",
"resolve",
"OpenAPI",
"AsyncAPI"
],
"pre-push": [
"lint",
"test"
],
"author": { "name": "David Biesack", "url": "https://github.com/DavidBiesack"},
"license": "ISC",
"homepage": "https://github.com/apiture/api-ref-resolver/blob/main/README.md",
"dependencies": {
"bl": "^5.0.0",
"commander": "^9.0.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"json-pointer": "^0.6.1",
"mkdirs": "0.0.3"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"jest": "^27.5.1",
"pre-push": "^0.1.1",
"@jest/globals": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
}
}