-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 KB
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
{
"name": "@basketry/openapi-3",
"version": "0.2.4",
"description": "Basketry parser for OpenAPI 3.x service definitions",
"main": "./lib/index.js",
"bin": {
"basketry-openapi-3": "./lib/rpc.js"
},
"scripts": {
"test": "jest",
"clean": "run-s -s clean:*",
"create-snapshot": "ts-node ./src/snapshot/create-snapshot.ts",
"lint": "run-s -s lint:*",
"fix": "run-s -s fix:*",
"clean:output": "rimraf lib",
"start": "node ./lib/index.js",
"prebuild": "run-s -s clean lint",
"build": "tsc",
"postbuild": "chmod +x ./lib/rpc.js",
"lint:eslint": "eslint .",
"fix:eslint": "eslint --fix",
"lint:prettier": "prettier -c .",
"fix:prettier": "prettier -w .",
"clean:coverage": "rimraf coverage",
"pretest": "run-s -s clean",
"prepack": "run-s -s build"
},
"keywords": [],
"author": "Steve Konves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/openapi-3.git"
},
"bugs": {
"url": "https://github.com/basketry/openapi-3/issues"
},
"homepage": "https://basketry.io/docs/components/@basketry/openapi-3",
"funding": "https://github.com/sponsors/basketry",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/json-to-ast": "^2.1.2",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@basketry/ast": "^0.2.0",
"basketry": "^0.2.1",
"case": "^1.6.3",
"json-to-ast": "^2.1.0",
"pluralize": "^8.0.0",
"semver": "^7.3.5",
"yaml-ast-parser": "^0.0.43"
}
}