|
6 | 6 | },
|
7 | 7 | "scripts": {
|
8 | 8 | "type-check": "tsc --noEmit",
|
9 |
| - "commitmsg": "commitlint -e $GIT_PARAMS", |
10 | 9 | "license": "license-checker --onlyAllow 'Apache-2.0; Apache License, Version 2.0; BSD; BSD-2-Clause; BSD-3-Clause; ISC; MIT; Unlicense; WTFPL; CC-BY-3.0; CC0-1.0' --production --summary",
|
11 | 10 | "type-check:watch": "npm run type-check -- --watch",
|
12 | 11 | "lint:ts": "eslint . --ext .js,.ts",
|
|
47 | 46 | "url": "https://github.com/bufferoverflow/verdaccio-gitlab/issues"
|
48 | 47 | },
|
49 | 48 | "engines": {
|
50 |
| - "node": ">=8" |
| 49 | + "node": ">=10" |
51 | 50 | },
|
52 | 51 | "dependencies": {
|
53 | 52 | "gitlab": "3.5.1",
|
|
57 | 56 | "verdaccio": "^4.3.4"
|
58 | 57 | },
|
59 | 58 | "devDependencies": {
|
60 |
| - "@commitlint/cli": "8.2.0", |
61 |
| - "@commitlint/config-conventional": "8.2.0", |
62 |
| - "@commitlint/travis-cli": "8.2.0", |
63 |
| - "@types/http-errors": "1.6.2", |
64 |
| - "@types/jest": "24.0.22", |
65 |
| - "@types/lodash": "^4.14.146", |
66 |
| - "@types/node": "^12.12.7", |
67 |
| - "@typescript-eslint/eslint-plugin": "2.6.1", |
68 |
| - "@verdaccio/babel-preset": "^8.2.0", |
69 |
| - "@verdaccio/commons-api": "^8.2.0", |
70 |
| - "@verdaccio/eslint-config": "^8.2.0", |
71 |
| - "@verdaccio/types": "^8.3.0", |
72 |
| - "body-parser": "^1.18.3", |
73 |
| - "chalk": "^2.4.1", |
74 |
| - "cross-env": "^5.2.0", |
75 |
| - "eslint": "^6.3.0", |
76 |
| - "express": "^4.16.3", |
77 |
| - "generate-changelog": "1.7.1", |
78 |
| - "http-status": "^1.2.0", |
79 |
| - "husky": "0.14.3", |
80 |
| - "in-publish": "2.0.0", |
81 |
| - "jest": "24.9.0", |
| 59 | + "@commitlint/cli": "^8.3.3", |
| 60 | + "@commitlint/config-conventional": "^8.3.3", |
| 61 | + "@commitlint/travis-cli": "^8.3.3", |
| 62 | + "@types/http-errors": "^1.6.3", |
| 63 | + "@types/jest": "^24.0.24", |
| 64 | + "@types/lodash": "^4.14.149", |
| 65 | + "@types/node": "^13.1.0", |
| 66 | + "@typescript-eslint/eslint-plugin": "^2.13.0", |
| 67 | + "@typescript-eslint/parser": "^2.13.0", |
| 68 | + "@verdaccio/babel-preset": "^8.5.0", |
| 69 | + "@verdaccio/commons-api": "^8.5.0", |
| 70 | + "@verdaccio/eslint-config": "^8.5.0", |
| 71 | + "@verdaccio/types": "^8.5.0", |
| 72 | + "body-parser": "^1.19.0", |
| 73 | + "chalk": "^2.4.2", |
| 74 | + "cross-env": "^6.0.3", |
| 75 | + "eslint": "^6.8.0", |
| 76 | + "express": "^4.17.1", |
| 77 | + "generate-changelog": "^1.8.0", |
| 78 | + "http-status": "^1.4.2", |
| 79 | + "husky": "^3.1.0", |
| 80 | + "in-publish": "^2.0.0", |
| 81 | + "jest": "^24.9.0", |
82 | 82 | "jest-environment-node": "^24.9.0",
|
83 |
| - "license-checker": "20.1.0", |
| 83 | + "license-checker": "^25.0.1", |
84 | 84 | "lodash": "^4.17.15",
|
85 |
| - "markdownlint-cli": "0.19.0", |
| 85 | + "markdownlint-cli": "^0.20.0", |
86 | 86 | "prettier": "^1.19.1",
|
87 |
| - "repolinter": "0.7.0", |
88 | 87 | "request": "^2.88.0",
|
89 |
| - "rimraf": "^2.6.2", |
90 |
| - "typescript": "3.7.2" |
| 88 | + "rimraf": "^3.0.0", |
| 89 | + "typescript": "^3.7.4" |
91 | 90 | },
|
92 | 91 | "commitlint": {
|
93 | 92 | "extends": [
|
94 | 93 | "@commitlint/config-conventional"
|
95 | 94 | ]
|
| 95 | + }, |
| 96 | + "husky": { |
| 97 | + "hooks": { |
| 98 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
| 99 | + } |
| 100 | + }, |
| 101 | + "eslintConfig": { |
| 102 | + "extends": [ |
| 103 | + "@verdaccio" |
| 104 | + ], |
| 105 | + "rules": { |
| 106 | + "@typescript-eslint/no-var-requires": 0, |
| 107 | + "@typescript-eslint/ban-ts-ignore": 0, |
| 108 | + "@typescript-eslint/no-use-before-define": 0, |
| 109 | + "@typescript-eslint/no-explicit-any": 0, |
| 110 | + "@typescript-eslint/explicit-function-return-type": 0, |
| 111 | + "@typescript-eslint/explicit-member-accessibility": 0 |
| 112 | + }, |
| 113 | + "ignorePatterns": ["build/", "node_modules/"] |
96 | 114 | }
|
97 | 115 | }
|
0 commit comments