mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
build: update dependencies (#1452)
* build: update dependencies * chore: update dependencies * chore: update dependencies * chore: update dependencies * chore: allow ts-ignore we will remove this in the future, warn for now * chore: eslint rules as warning this is due the update, we will address this later
This commit is contained in:
parent
423371423a
commit
37530ac0fd
4 changed files with 28 additions and 23 deletions
|
@ -4,6 +4,10 @@
|
|||
],
|
||||
"rules": {
|
||||
"@typescript-eslint/no-var-requires": ["warn"],
|
||||
"@typescript-eslint/ban-ts-ignore": ["warn"],
|
||||
"@typescript-eslint/no-inferrable-types": ["warn"],
|
||||
"@typescript-eslint/no-empty-function": ["warn"],
|
||||
"@typescript-eslint/no-this-alias": ["warn"],
|
||||
"@typescript-eslint/no-use-before-define": 0,
|
||||
"@typescript-eslint/array-type": ["warn"],
|
||||
"@typescript-eslint/no-explicit-any": 0,
|
||||
|
|
46
package.json
46
package.json
|
@ -15,10 +15,10 @@
|
|||
"verdaccio": "./bin/verdaccio"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/commons-api": "0.1.2",
|
||||
"@verdaccio/commons-api": "8.0.0",
|
||||
"@verdaccio/local-storage": "2.2.1",
|
||||
"@verdaccio/readme": "1.0.4",
|
||||
"@verdaccio/streams": "2.0.0",
|
||||
"@verdaccio/readme": "8.0.0",
|
||||
"@verdaccio/streams": "8.0.0",
|
||||
"@verdaccio/ui-theme": "0.2.3",
|
||||
"JSONStream": "1.3.5",
|
||||
"async": "3.1.0",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"jsonwebtoken": "8.5.1",
|
||||
"kleur": "3.0.3",
|
||||
"lockfile-lint": "2.0.1",
|
||||
"lodash": "4.17.14",
|
||||
"lodash": "4.17.15",
|
||||
"lunr-mutable-indexes": "2.3.2",
|
||||
"marked": "0.7.0",
|
||||
"mime": "2.4.4",
|
||||
|
@ -46,26 +46,26 @@
|
|||
"mv": "2.1.1",
|
||||
"pkginfo": "0.4.1",
|
||||
"request": "2.87.0",
|
||||
"semver": "6.2.0",
|
||||
"verdaccio-audit": "1.2.1",
|
||||
"verdaccio-htpasswd": "2.0.0"
|
||||
"semver": "6.3.0",
|
||||
"verdaccio-audit": "8.0.0",
|
||||
"verdaccio-htpasswd": "8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "8.0.0",
|
||||
"@commitlint/config-conventional": "8.0.0",
|
||||
"@octokit/rest": "16.28.2",
|
||||
"@types/async": "3.0.0",
|
||||
"@commitlint/cli": "8.1.0",
|
||||
"@commitlint/config-conventional": "8.1.0",
|
||||
"@octokit/rest": "16.28.7",
|
||||
"@types/async": "3.0.1",
|
||||
"@types/bunyan": "1.8.6",
|
||||
"@types/express": "4.17.0",
|
||||
"@types/http-errors": "1.6.1",
|
||||
"@types/jest": "24.0.15",
|
||||
"@types/lodash": "4.14.136",
|
||||
"@types/express": "4.17.1",
|
||||
"@types/http-errors": "1.6.2",
|
||||
"@types/jest": "24.0.18",
|
||||
"@types/lodash": "4.14.137",
|
||||
"@types/mime": "2.0.1",
|
||||
"@types/minimatch": "3.0.3",
|
||||
"@types/node": "12.6.2",
|
||||
"@types/node": "12.7.2",
|
||||
"@types/request": "2.48.2",
|
||||
"@types/semver": "6.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "1.12.0",
|
||||
"@typescript-eslint/eslint-plugin": "2.0.0",
|
||||
"@verdaccio/babel-preset": "0.2.1",
|
||||
"@verdaccio/eslint-config": "0.0.1",
|
||||
"@verdaccio/types": "5.2.2",
|
||||
|
@ -76,17 +76,17 @@
|
|||
"get-stdin": "7.0.0",
|
||||
"husky": "2.7.0",
|
||||
"in-publish": "2.0.0",
|
||||
"jest": "24.8.0",
|
||||
"jest-environment-node": "24.8.0",
|
||||
"jest": "24.9.0",
|
||||
"jest-environment-node": "24.9.0",
|
||||
"lint-staged": "8.2.1",
|
||||
"nock": "10.0.6",
|
||||
"puppeteer": "1.8.0",
|
||||
"rimraf": "2.6.3",
|
||||
"standard-version": "6.0.1",
|
||||
"rimraf": "3.0.0",
|
||||
"standard-version": "7.0.0",
|
||||
"supertest": "4.0.2",
|
||||
"typescript": "3.5.3",
|
||||
"verdaccio-auth-memory": "1.1.5",
|
||||
"verdaccio-memory": "2.0.0"
|
||||
"verdaccio-auth-memory": "8.0.0",
|
||||
"verdaccio-memory": "8.0.0"
|
||||
},
|
||||
"keywords": [
|
||||
"private",
|
||||
|
|
|
@ -6,6 +6,7 @@ import { IRequestPromise } from '../../types';
|
|||
import { VerdaccioError } from '@verdaccio/commons-api';
|
||||
|
||||
describe('Request Functional', () => {
|
||||
jest.setTimeout(20000);
|
||||
const mockServerPort = 55547;
|
||||
const restTest = `http://localhost:${55547}/jquery`;
|
||||
let mockRegistry;
|
||||
|
|
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in a new issue