forked from FWWyatt/swagger-markdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.45 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
90
91
92
93
94
95
96
97
98
{
"name": "swagger-markdown",
"version": "1.0.1",
"description": "Create markdown API documentation from swagger file",
"main": "index.js",
"scripts": {
"test": "npm run test:app && npm run test:lint",
"test:app": "mocha \"tests/**/*.spec.js\"",
"test:watch": "mocha --watch \"tests/**/*.spec.js\"",
"test:lint": "eslint .",
"build": "babel app --out-dir bin",
"prepublish": "npm run build",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"bin": {
"swagger-markdown": "bin/index.js"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{src,test}/**/*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/syroegkin/swagger-markdown.git"
},
"author": "Sergii Skorokhodov",
"license": "MIT",
"bugs": {
"url": "https://github.com/syroegkin/swagger-markdown/issues"
},
"homepage": "https://github.com/syroegkin/swagger-markdown#readme",
"babel": {
"presets": [
"env"
]
},
"keywords": [
"swagger",
"md",
"markdown"
],
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.9",
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"mocha": "^6.1.4",
"semantic-release": "^15.13.14"
},
"dependencies": {
"argparse": "^1.0.10",
"js-yaml": "^3.13.1"
}
}