forked from Redocly/redocly-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@redocly/openapi-cli",
"version": "0.6.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --source-maps inline && chmod +x ./dist/index.js && cp ./package.json ./dist/package.json && cp src/.openapi-cli.yaml dist/.openapi-cli.yaml",
"lint": "eslint ./src",
"prepublishOnly": "npm run build && cp src/.openapi-cli.yaml dist/.openapi-cli.yaml",
"test": "jest --coverage"
},
"bin": {
"openapi": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Redocly/openapi-cli.git"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"author": "Sergey Dubovyk <serhii@redoc.ly> (https://redoc.ly/)",
"license": "MIT",
"keywords": [
"linter",
"OpenAPI",
"Swagger",
"OpenAPI linter",
"Swagger linter",
"oas"
],
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.1",
"js-yaml": "^3.13.1",
"merge-deep": "^3.0.2",
"xmlhttprequest": "^1.8.0",
"yaml-ast-parser": "0.0.43"
}
}