Skip to content

Commit 31767bb

Browse files
committed
update dependencies
1 parent 42e3e4b commit 31767bb

File tree

5 files changed

+387
-435
lines changed

5 files changed

+387
-435
lines changed

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no-install lint-staged

.huskyrc.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"lint:lib": "tslint -p ./src/lib/tsconfig.json -c ./tslint.json \"./src/{lib,@types}/**/*.ts\"",
2222
"lint:test": "tslint -p ./test/tsconfig.json -c ./test/tslint.json \"./test/**/*.ts\"",
2323
"output:clean": "rimraf ./output",
24-
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json ava --verbose \"./test/**/*.{spec,test}.ts\""
24+
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json ava --verbose \"./test/**/*.{spec,test}.ts\"",
25+
"prepare": "husky install"
2526
},
2627
"ava": {
2728
"extensions": [
@@ -42,35 +43,36 @@
4243
"rxjs": "^6.x"
4344
},
4445
"dependencies": {
45-
"pubsub-to-rpc-api": "^5.2.0",
46+
"pubsub-to-rpc-api": "^5.2.1",
4647
"pure-uuid": "^1.6.2",
4748
"tslib": "^2.1.0"
4849
},
4950
"devDependencies": {
50-
"@types/node": "^12.12.21",
51-
"@types/sinon": "^9.0.10",
51+
"@types/node": "^14.14.37",
52+
"@types/sinon": "^9.0.11",
5253
"@vladimiry/import-sort-style": "^0.1.1",
5354
"ava": "^3.15.0",
5455
"cross-env": "^7.0.3",
55-
"husky": "^4.3.8",
56+
"husky": "^6.0.0",
5657
"import-sort-cli": "^6.0.0",
5758
"import-sort-parser-typescript": "^6.0.0",
5859
"install-peers": "^1.0.2",
59-
"lint-staged": "^10.5.3",
60+
"lint-staged": "^10.5.4",
6061
"npm-run-all": "^4.1.5",
6162
"rewiremock": "^3.14.3",
6263
"rimraf": "^3.0.2",
63-
"sinon": "^9.2.4",
64+
"sinon": "^10.0.0",
6465
"ts-node": "^9.1.1",
6566
"tsconfig-paths": "^3.9.0",
6667
"tslint": "^6.1.3",
6768
"tslint-consistent-codestyle": "^1.16.0",
6869
"tslint-eslint-rules": "^5.4.0",
6970
"tslint-rules-bunch": "^1.0.0",
70-
"typescript": "^4.1.3"
71+
"typescript": "^4.2.3"
7172
},
7273
"resolutions": {
73-
"import-sort-cli/yargs": "^15.x",
74+
"*/**/tslib": "^2.x",
75+
"import-sort-cli/yargs": "^16.x",
7476
"import-sort-parser-typescript/typescript": "^4.x"
7577
}
7678
}

0 commit comments

Comments
 (0)