forked from Springworks/swagger-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
67
68
69
70
71
{
"name": "@socialtables/swagger-md",
"description": "Converts Swagger API spec to Markdown file",
"main": "dist/index.js",
"version": "2.2.0",
"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",
"changeset": "changeset",
"release": "st-changeset release"
},
"dependencies": {
"json-schema-ref-parser": "4.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@socialtables/changesets": "^1.2.2",
"babel-cli": "6.22.2",
"babel-eslint": "7.1.1",
"babel-jest": "18.0.0",
"babel-polyfill": "6.22.0",
"babel-preset-es2015-node4": "2.1.1",
"eslint": "3.14.1",
"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.4.1",
"jest": "18.1.0",
"semantic-release": "6.3.2"
},
"babel": {
"presets": [
"es2015-node4"
]
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=4",
"npm": ">=2.7"
},
"repository": {
"type": "git",
"url": "https://github.com/socialtables/swagger-md.git"
},
"keywords": [
"swagger",
"markdown",
"converter",
"api"
],
"author": "Springworks (http://springworks.se), Social Tables",
"license": "MIT",
"bugs": {
"url": "https://github.com/socialtables/swagger-md/issues"
},
"homepage": "https://github.com/socialtables/swagger-md#readme"
}