-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
93 lines (93 loc) · 2.72 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
{
"name": "openapi-comment-parser",
"version": "0.0.18",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"openapi-comment-parser": "./bin/index.js"
},
"license": "MIT",
"description": "JSDoc Comments for the OpenApi Specification",
"homepage": "https://github.com/bee-travels/openapi-comment-parser",
"repository": {
"type": "git",
"url": "git://github.com/bee-travels/openapi-comment-parser.git"
},
"bugs": {
"url": "https://github.com/bee-travels/openapi-comment-parser/issues"
},
"keywords": [
"openapi",
"swagger",
"jsdoc",
"comment",
"api",
"express"
],
"files": [
"/bin",
"/dist"
],
"main": "dist/openapi-comment-parser.js",
"module": "dist/openapi-comment-parser.esm.js",
"types": "dist/openapi-comment-parser.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"test": "mocha -r ts-node/register \"src/**/?(*.)test.ts\"",
"prestart": "npm run build && cd openapi-ui-express && npm run build",
"start": "nodemon -e yaml,yml,js,mjs,json --exec \"LOCAL_DEVELOPMENT=1 node example/src/app.js\"",
"build": "run-s clean bundle",
"clean": "rimraf dist",
"bundle": "rollup -c && cp src/exported.d.ts dist/openapi-comment-parser.d.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-sucrase": "^3.0.1",
"@types/chai": "^4.2.11",
"@types/js-yaml": "^3.12.4",
"@types/lodash": "^4.14.152",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-eslint": "^10.1.0",
"body-parser": "1.19.0",
"caller-callsite": "^4.1.0",
"chai": "4.2.0",
"chalk": "^4.0.0",
"comment-parser": "^0.7.4",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-openapi": "^0.0.4",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"globby": "^11.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"mocha": "7.1.1",
"nodemon": "^2.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.10.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.10.1",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
}
}