build: update dependencies

This commit is contained in:
Karl-Philipp Wulfert
2020-09-21 13:57:06 +02:00
parent a5fa2ccc2e
commit a99fc357fe
5 changed files with 653 additions and 454 deletions

View File

@@ -11,6 +11,7 @@ before_script:
stages: stages:
- build - build
- test - test
- audit
- deploy - deploy
- publish - publish
@@ -28,14 +29,14 @@ audit:
- schedules - schedules
script: script:
- npm audit - npm audit
stage: test stage: audit
scheduled-audit: scheduled-audit:
only: only:
- schedules - schedules
script: script:
- npm audit - npm audit
stage: test stage: audit
pages: pages:
stage: deploy stage: deploy

1077
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -19,26 +19,29 @@
"push": "git push && git push origin \"v$npm_package_version\"" "push": "git push && git push origin \"v$npm_package_version\""
}, },
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>", "author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"contributors": [
"Rainer Killinger"
],
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"dependencies": { "dependencies": {
"@krlwlfrt/async-pool": "0.2.1", "@krlwlfrt/async-pool": "0.4.1",
"@openstapps/logger": "0.5.0", "@openstapps/logger": "0.5.0",
"@types/node": "10.17.19", "@types/node": "10.17.19",
"@types/request": "2.48.4", "@types/request": "2.48.5",
"@types/request-promise-native": "1.0.17", "@types/request-promise-native": "1.0.17",
"commander": "4.1.0", "commander": "6.1.0",
"request": "2.88.2", "request": "2.88.2",
"request-promise-native": "1.0.8" "request-promise-native": "1.0.9"
}, },
"devDependencies": { "devDependencies": {
"@openstapps/configuration": "0.24.0", "@openstapps/configuration": "0.24.0",
"conventional-changelog-cli": "2.0.31", "conventional-changelog-cli": "2.1.0",
"prepend-file-cli": "1.0.6", "prepend-file-cli": "1.0.6",
"rimraf": "3.0.2", "rimraf": "3.0.2",
"ts-node": "8.8.2", "ts-node": "9.0.0",
"tslint": "6.1.1", "tslint": "6.1.3",
"typedoc": "0.15.6", "typedoc": "0.19.2",
"typescript": "3.7.4" "typescript": "4.0.3"
}, },
"main": "lib/api.js", "main": "lib/api.js",
"types": "lib/api.d.ts", "types": "lib/api.d.ts",

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2018, 2019 StApps * Copyright (C) 2018-2020 StApps
* This program is free software: you can redistribute it and/or modify it * This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free * under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3. * Software Foundation, version 3.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2018, 2019 StApps * Copyright (C) 2018-2020 StApps
* This program is free software: you can redistribute it and/or modify it * This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free * under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3. * Software Foundation, version 3.