-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "swagger-md",
"description": "Converts Swagger API spec to Markdown file",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test-cov": "jest --coverage",
"test-watch": "jest --watch",
"lint": "eslint --cache .",
"build": "rm -rf dist && babel src --out-dir dist --ignore __tests__",
"commit": "commit-wizard",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"json-schema-ref-parser": "^3.1.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015-node4": "^2.1.1",
"eslint": "^4.3.0",
"eslint-config-springworks": "^7.0.7",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-springworks": "^2.0.1",
"fixture-loader": "^1.0.1",
"jest": "^21.1.0",
"semantic-release": "^8.0.0"
},
"babel": {
"presets": [
"es2015-node4"
]
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=4",
"npm": ">=2.7"
},
"repository": {
"type": "git",
"url": "https://github.com/Springworks/swagger-md.git"
},
"keywords": [
"swagger",
"markdown",
"converter",
"api"
],
"author": "Springworks (http://springworks.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Springworks/swagger-md/issues"
},
"homepage": "https://github.com/Springworks/swagger-md#readme"
}