-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "swagger-walker",
"version": "0.0.3",
"description": "NodeJS utility to help work with Swagger Spec",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"umd:main": "dist/index.js",
"jsnext:main": "dist/index.js",
"watch": {
"start": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false
}
},
"scripts": {
"start": "cross-env TS_NODE_FILES=true ts-node src/index.ts",
"start:watch": "npm-watch start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "rimraf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acacode/swagger-walker.git"
},
"keywords": [
"swagger",
"typescript",
"javascript",
"open-api",
"openapi",
"schema"
],
"author": "acacode",
"license": "MIT",
"bugs": {
"url": "https://github.com/acacode/swagger-walker/issues"
},
"homepage": "https://github.com/acacode/swagger-walker#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index -g"
}
},
"files": [
"dist",
"LICENSE"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
]
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"cross-env": "^7.0.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"npm-watch": "^0.7.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
},
"dependencies": {
"typescript": "^4.1.5",
"axios": "^0.21.1",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"openapi-types": "^7.2.3",
"swagger2openapi": "^7.0.5"
}
}