forked from readmeio/swagger-inline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"name": "swagger-inline",
"version": "1.1.1",
"description": "Generate your OAS/Swagger files from inline comments.",
"main": "build/index.js",
"scripts": {
"build": "babel src/ -d build",
"lint": "eslint .",
"posttest": "nyc report --reporter=lcov && nyc report --reporter=text-summary && nyc check-coverage --statements 75 --branches 70 --functions 85 --lines 75",
"prepublish": "npm run-script build",
"pretest": "npm run lint && npm run prettier",
"prettier": "prettier --list-different --write \"./**/**.js\"",
"start": "babel --watch src/ -d build/",
"test": "nyc --reporter=none mocha --colors --require babel-register tests/**/*-test.js",
"test-watch": "mocha --watch --colors --require babel-register tests/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/readmeio/swagger-inline.git"
},
"keywords": [
"swagger",
"docs",
"readmeio",
"documentation",
"api",
"inline",
"comments"
],
"author": "Readme.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/readmeio/swagger-inline/issues"
},
"homepage": "https://github.com/readmeio/swagger-inline#readme",
"dependencies": {
"bluebird": "^3.4.1",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"fs-extra": "^0.30.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.11",
"multi-glob": "^1.0.2",
"multilang-extract-comments": "^0.3.2"
},
"devDependencies": {
"@readme/eslint-config": "^1.7.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"mocha": "^6.1.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1"
},
"bin": {
"swagger-inline": "build/index.js"
},
"babel": {
"presets": [
"es2015"
]
}
}