Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Commit 4b06d36

Browse files
authored
feat(dependencies): upgrade dependencies (#186)
1 parent 42c42df commit 4b06d36

4 files changed

Lines changed: 30 additions & 22 deletions

File tree

.appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ skip_branch_with_pr: true
44

55
environment:
66
matrix:
7+
- nodejs_version: "10"
78
- nodejs_version: "9"
89
- nodejs_version: "8"
910

@@ -13,5 +14,7 @@ install:
1314

1415
test_script:
1516
- npm test
17+
- npm i -g codecov
18+
- codecov
1619

1720
build: off

.travis.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,30 @@ notifications:
1111

1212
jobs:
1313
include:
14+
- stage: test
15+
node_js: '10'
16+
after_success:
17+
- npm i -g codecov
18+
- codecov
1419
- stage: test
1520
node_js: '9'
1621
after_success:
17-
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls
22+
- npm i -g codecov
23+
- codecov
1824
- stage: test
1925
node_js: '8'
2026
after_success:
21-
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls
27+
- npm i -g codecov
28+
- codecov
2229
- stage: deploy
23-
node_js: '9'
30+
node_js: '10'
2431
script: npm run typedoc
2532
deploy:
2633
provider: pages
2734
skip_cleanup: true
2835
github_token: $GH_TOKEN
2936
local_dir: ./docs
3037
- stage: deploy
31-
node_js: '9'
38+
node_js: '10'
3239
before_script: npm run build
3340
script: npm run semantic-release

jest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"collectCoverage": true,
3-
"mapCoverage": true,
43
"transform": {
54
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
65
},

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,26 @@
4747
},
4848
"homepage": "https://github.com/smartive/giuseppe#readme",
4949
"dependencies": {
50-
"@types/express": "^4.11.0",
51-
"@types/glob": "^5.0.34",
50+
"@types/express": "^4.16.0",
51+
"@types/glob": "^5.0.35",
5252
"@types/http-status": "^0.2.30",
53-
"@types/node": "^9.3.0",
54-
"express": "^4.16.2",
53+
"@types/node": "^10.3.6",
54+
"express": "^4.16.3",
5555
"glob": "^7.1.2",
56-
"http-status": "^1.0.1",
57-
"reflect-metadata": "^0.1.10",
58-
"tslib": "^1.8.1"
56+
"http-status": "^1.2.0",
57+
"reflect-metadata": "^0.1.12",
58+
"tslib": "^1.9.3"
5959
},
6060
"devDependencies": {
61-
"@smartive/tslint-config": "^2.0.0",
62-
"@types/jest": "^22.0.1",
61+
"@smartive/tslint-config": "^3.0.1",
62+
"@types/jest": "^23.1.2",
6363
"del-cli": "^1.1.0",
64-
"jest": "^22.1.1",
65-
"semantic-release": "^12.2.2",
66-
"ts-jest": "^22.0.1",
67-
"tslint": "^5.9.1",
68-
"tslint-config-airbnb": "^5.4.2",
69-
"tsutils": "^2.18.0",
70-
"typedoc": "^0.10.0",
71-
"typescript": "^2.8.0"
64+
"jest": "^23.2.0",
65+
"semantic-release": "^15.6.0",
66+
"ts-jest": "^22.4.6",
67+
"tslint": "^5.10.0",
68+
"tsutils": "^2.27.1",
69+
"typedoc": "^0.11.1",
70+
"typescript": "^2.9.2"
7271
}
7372
}

0 commit comments

Comments
 (0)