0
Fork 0
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:
Juan Picado @jotadeveloper 2019-08-25 10:16:43 -07:00 committed by GitHub
parent 423371423a
commit 37530ac0fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 23 deletions

View file

@ -4,6 +4,10 @@
], ],
"rules": { "rules": {
"@typescript-eslint/no-var-requires": ["warn"], "@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/no-use-before-define": 0,
"@typescript-eslint/array-type": ["warn"], "@typescript-eslint/array-type": ["warn"],
"@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-explicit-any": 0,

View file

@ -15,10 +15,10 @@
"verdaccio": "./bin/verdaccio" "verdaccio": "./bin/verdaccio"
}, },
"dependencies": { "dependencies": {
"@verdaccio/commons-api": "0.1.2", "@verdaccio/commons-api": "8.0.0",
"@verdaccio/local-storage": "2.2.1", "@verdaccio/local-storage": "2.2.1",
"@verdaccio/readme": "1.0.4", "@verdaccio/readme": "8.0.0",
"@verdaccio/streams": "2.0.0", "@verdaccio/streams": "8.0.0",
"@verdaccio/ui-theme": "0.2.3", "@verdaccio/ui-theme": "0.2.3",
"JSONStream": "1.3.5", "JSONStream": "1.3.5",
"async": "3.1.0", "async": "3.1.0",
@ -37,7 +37,7 @@
"jsonwebtoken": "8.5.1", "jsonwebtoken": "8.5.1",
"kleur": "3.0.3", "kleur": "3.0.3",
"lockfile-lint": "2.0.1", "lockfile-lint": "2.0.1",
"lodash": "4.17.14", "lodash": "4.17.15",
"lunr-mutable-indexes": "2.3.2", "lunr-mutable-indexes": "2.3.2",
"marked": "0.7.0", "marked": "0.7.0",
"mime": "2.4.4", "mime": "2.4.4",
@ -46,26 +46,26 @@
"mv": "2.1.1", "mv": "2.1.1",
"pkginfo": "0.4.1", "pkginfo": "0.4.1",
"request": "2.87.0", "request": "2.87.0",
"semver": "6.2.0", "semver": "6.3.0",
"verdaccio-audit": "1.2.1", "verdaccio-audit": "8.0.0",
"verdaccio-htpasswd": "2.0.0" "verdaccio-htpasswd": "8.0.0"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "8.0.0", "@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.0.0", "@commitlint/config-conventional": "8.1.0",
"@octokit/rest": "16.28.2", "@octokit/rest": "16.28.7",
"@types/async": "3.0.0", "@types/async": "3.0.1",
"@types/bunyan": "1.8.6", "@types/bunyan": "1.8.6",
"@types/express": "4.17.0", "@types/express": "4.17.1",
"@types/http-errors": "1.6.1", "@types/http-errors": "1.6.2",
"@types/jest": "24.0.15", "@types/jest": "24.0.18",
"@types/lodash": "4.14.136", "@types/lodash": "4.14.137",
"@types/mime": "2.0.1", "@types/mime": "2.0.1",
"@types/minimatch": "3.0.3", "@types/minimatch": "3.0.3",
"@types/node": "12.6.2", "@types/node": "12.7.2",
"@types/request": "2.48.2", "@types/request": "2.48.2",
"@types/semver": "6.0.1", "@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/babel-preset": "0.2.1",
"@verdaccio/eslint-config": "0.0.1", "@verdaccio/eslint-config": "0.0.1",
"@verdaccio/types": "5.2.2", "@verdaccio/types": "5.2.2",
@ -76,17 +76,17 @@
"get-stdin": "7.0.0", "get-stdin": "7.0.0",
"husky": "2.7.0", "husky": "2.7.0",
"in-publish": "2.0.0", "in-publish": "2.0.0",
"jest": "24.8.0", "jest": "24.9.0",
"jest-environment-node": "24.8.0", "jest-environment-node": "24.9.0",
"lint-staged": "8.2.1", "lint-staged": "8.2.1",
"nock": "10.0.6", "nock": "10.0.6",
"puppeteer": "1.8.0", "puppeteer": "1.8.0",
"rimraf": "2.6.3", "rimraf": "3.0.0",
"standard-version": "6.0.1", "standard-version": "7.0.0",
"supertest": "4.0.2", "supertest": "4.0.2",
"typescript": "3.5.3", "typescript": "3.5.3",
"verdaccio-auth-memory": "1.1.5", "verdaccio-auth-memory": "8.0.0",
"verdaccio-memory": "2.0.0" "verdaccio-memory": "8.0.0"
}, },
"keywords": [ "keywords": [
"private", "private",

View file

@ -6,6 +6,7 @@ import { IRequestPromise } from '../../types';
import { VerdaccioError } from '@verdaccio/commons-api'; import { VerdaccioError } from '@verdaccio/commons-api';
describe('Request Functional', () => { describe('Request Functional', () => {
jest.setTimeout(20000);
const mockServerPort = 55547; const mockServerPort = 55547;
const restTest = `http://localhost:${55547}/jquery`; const restTest = `http://localhost:${55547}/jquery`;
let mockRegistry; let mockRegistry;

BIN
yarn.lock

Binary file not shown.