-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "openapi-graph-core",
"version": "1.1.0",
"description": "A TS library to manage large API projects defined by OpenAPIv3 specification.",
"main": "./lib/index.js",
"keywords": [
"openapi3",
"graph-structures",
"ts-library"
],
"homepage": "https://github.com/onmax/openapi-graph-core",
"bugs": "https://github.com/onmax/openapi-graph-core/issues",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"debug": "node --debug-brk --inspect ./node_modules/jest/bin/jest -i",
"release": "release-it"
},
"author": "onmax",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"url": "git://github.com/onmax/openapi-graph-core.git"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.0.0",
"openapi-types": "^7.2.3",
"prettier": "^2.2.1",
"release-it": "^14.6.1",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"openapi-graph-types": "1.0.0",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"yaml": "^1.10.2"
}
}