-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "gl-code-quality-openapi-validator",
"version": "1.0.4",
"description": "GitLab Code Quality generator for IBM's OpenAPI Validator.",
"main": "bin/index.js",
"bin": {
"gl-code-quality-openapi-validator": "./bin/index.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --collectCoverageFrom=./lib/**",
"lint": "eslint ."
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/J-R-Oliver/gl-code-quality-openapi-validator.git"
},
"keywords": [
"openapi",
"gitlab",
"code-quality",
"javascript"
],
"author": "James Oliver",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/issues"
},
"homepage": "https://github.com/J-R-Oliver/gl-code-quality-openapi-validator#readme",
"dependencies": {
"commander": "^10.0.1"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^44.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"prettier": "^2.8.8"
}
}