Skip to content

Commit

Permalink
fix(package): up deps, fix some vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Oct 28, 2020
1 parent 4a58c0e commit 04d18c9
Show file tree
Hide file tree
Showing 5 changed files with 628 additions and 4,281 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ jobs:
workspaces:
use: shared
install: skip
script: yarn release
script: npx -p @qiwi/semrel-toolkit semrel
2 changes: 1 addition & 1 deletion jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
"tsconfig": "tsconfig.test.json"
}
}
}
35 changes: 13 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"docs": "typedoc --readme README.md --tsconfig tsconfig.json src/main --ignoreCompilerErrors && touch ./docs/.nojekyll || exit 0",
"postupdate": "yarn && npx yarn-audit-fix && yarn build && yarn test",
"publish:beta": "npm publish --no-git-tag-version --tag beta",
"release": "semantic-release"
"publish:beta": "npm publish --no-git-tag-version --tag beta"
},
"repository": {
"type": "git",
Expand All @@ -50,48 +49,40 @@
},
"homepage": "https://github.com/qiwi/libdefkit#readme",
"dependencies": {
"@qiwi/substrate": "^1.19.1",
"@types/find-cache-dir": "^3.2.0",
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.162",
"@types/fs-extra": "^9.0.2",
"@types/lodash": "^4.14.163",
"@types/meow": "^5.0.0",
"@types/read-pkg": "^5.1.0",
"@types/yargs-parser": "^15.0.0",
"chalk": "^4.1.0",
"@antongolub/dts-bundle": "^0.7.4-beta.1",
"find-cache-dir": "^3.3.1",
"find-up": "^5.0.0",
"flowgen": "1.11.0",
"flowgen": "1.12.0",
"fs-extra": "^9.0.1",
"meow": "^7.1.1",
"tslib": "^2.0.3",
"yargs-parser": "^20.2.1"
"yargs-parser": "^20.2.3"
},
"devDependencies": {
"@qiwi/license": "^1.1.3",
"@qiwi/semantic-release-gh-pages-plugin": "^5.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@types/jest": "^26.0.14",
"@types/jest-json-schema": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@types/jest": "^26.0.15",
"@types/jest-json-schema": "^2.1.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"coveralls": "^3.1.0",
"cpy-cli": "^3.1.1",
"mkdirp": "^1.0.4",
"esm": "^3.2.25",
"jest": "^26.5.2",
"jest": "^26.6.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.2",
"terser": "^5.3.4",
"ts-jest": "^26.4.1",
"terser": "^5.3.8",
"ts-jest": "^26.4.3",
"tslint": "^6.1.3",
"tslint-config-qiwi": "^1.5.0",
"typedoc": "^0.19.2",
"typedoc-plugin-external-module-name": "^4.0.3",
"typescript": "^4.0.3"
"typescript": "^4.0.5"
},
"release": {
"branch": "master",
Expand Down
2 changes: 1 addition & 1 deletion src/test/ts/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ describe('util', () => {
describe('#getClosestBin', () => {
it('properly resolves cmd refs', () => {
const cases: [string, string | undefined][] = [
['npm', resolve(__dirname, '../../../node_modules/.bin/npm')],
['npm', 'npm'],
['tsc', resolve(__dirname, '../../../node_modules/.bin/tsc')],
['not-found', 'not-found'],
]
Expand Down
Loading

0 comments on commit 04d18c9

Please sign in to comment.