Skip to content

Commit 94cfcb4

Browse files
author
Jon La Marr
committed
Update security issues
Update travis scripts to use yarn Version lock
1 parent b021711 commit 94cfcb4

File tree

3 files changed

+1038
-1272
lines changed

3 files changed

+1038
-1272
lines changed

.travis.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- stage: test
1818
name: "Lint and Test"
1919
script:
20-
- npm run lint
21-
- npm run test
20+
- yarn lint
21+
- yarn test
2222
- stage: publish-edge
2323
name: "Publish @edge to NPM"
2424
script:
25-
- npm run build
25+
- yarn build
2626
deploy:
2727
provider: script
2828
skip_cleanup: true
@@ -32,7 +32,7 @@ jobs:
3232
- stage: publish-latest
3333
name: "Publish @latest to NPM"
3434
script:
35-
- npm run build
35+
- yarn build
3636
deploy:
3737
provider: script
3838
skip_cleanup: true
@@ -41,6 +41,5 @@ jobs:
4141
all_branches: true
4242
condition: $TRAVIS_TAG =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$
4343
notifications:
44-
webhooks:
44+
webhooks:
4545
secure: "Y5/QLqEthobAVHPhVvuYmMoLmMzDtX3e0DSLvvLxf9ncYSn3gp2qC/nntkm8D85bHeCtGMjCoFudatCxG4oIWOB45IpXG/+3GWelVIG9GH2iiDMwY3wBSNVzDjnN/FsPA0+P01X9Hr9V3Om5vH6WXoK4yc1HoSD2yPBcRYHnhUrVat+Pokw0CQa26DH9WxvWDm8IGxJiLEI+4E7LzdWe2CK+rAgDwPKMs8wFwpOjq/FJX4amtjWqGHla3XU0AwR5E/2y6bzQseTSjBHY+Dh0KYfPOVvvyXpOwcUImBVANr7XB89wZ0Jy56ohTu1It0jMTr+r7sWKu4s7GUjpTNSam7sJhphmTguVyA634HwhjT4Uj5oSuUNIHhtobvH6y0ZnLix1Bi4lKsSjfCZ/A3vycOJ/dfBqgt7CpOCBE4i0vtLi0WoxyJG/9yr4xdo4V4JlTxGZGaK4xDNhISyk/eedODY96kqz5QnyvwuE3oN7AWNeKCXCB9prqdZWuoBoPhx1fPk0+kiPxPcyzZRSiqUvRZGX0LX5dt9iaSIQfWtFYMUCc0aLyJFxYYIoaDvsewGjluSJ1aUQIkzDZ13BXbrpg1gxhJLzHs6bPrTQRKbeMQTYIdE9tc5lPnFEhJ4zJ+MPjVXa5CwYggUe3j4p+8pVP86Fs/F5ETcPLzwjpd+T898="
46-

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,27 @@
1818
"@blockone/tslint-config-blockone": "^4.0.0",
1919
"@types/bunyan": "^1.8.5",
2020
"@types/dockerode": "^2.5.5",
21-
"@types/jest": "^24.0.12",
21+
"@types/jest": "^24.0.25",
2222
"@types/massive": "^4.6.1",
2323
"@types/node": "^10.5.1",
2424
"@types/request-promise-native": "^1.0.15",
2525
"dockerode": "^2.5.5",
26-
"jest": "^24.7.1",
26+
"jest": "^24.9.0",
2727
"pg-monitor": "^1.1.0",
28-
"ts-jest": "^23.0.0",
28+
"ts-jest": "^24.2.0",
2929
"tslint": "^5.10.0",
3030
"tslint-eslint-rules": "^5.3.1",
31-
"typedoc": "^0.11.1",
31+
"typedoc": "^0.15.6",
3232
"typescript": "^3.4.5"
3333
},
3434
"dependencies": {
35-
"@types/express": "^4.16.1",
35+
"@types/express": "4.17.2",
3636
"demux": "5.0.2-572",
3737
"massive": "5.11.0"
3838
},
39+
"resolutions": {
40+
"lodash": "4.17.15"
41+
},
3942
"peerDependencies": {
4043
"demux": "5.0.2-572"
4144
},

0 commit comments

Comments
 (0)