mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-23 01:53:00 +00:00
build: update dependencies
This commit is contained in:
@@ -20,7 +20,21 @@ build:
|
|||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- lib
|
- lib
|
||||||
expire_in: 1 week
|
|
||||||
|
package:
|
||||||
|
dependencies:
|
||||||
|
- build
|
||||||
|
tags:
|
||||||
|
- secrecy
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > ~/.npmrc
|
||||||
|
- npm publish
|
||||||
|
only:
|
||||||
|
- /^v[0-9]+.[0-9]+.[0-9]+$/
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- lib
|
||||||
|
|
||||||
audit:
|
audit:
|
||||||
stage: test
|
stage: test
|
||||||
|
|||||||
819
package-lock.json
generated
819
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
37
package.json
37
package.json
@@ -7,17 +7,20 @@
|
|||||||
"check-configuration": "openstapps-configuration",
|
"check-configuration": "openstapps-configuration",
|
||||||
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
||||||
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
|
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
|
||||||
|
"postversion": "npm run changelog",
|
||||||
"prepublishOnly": "npm ci && npm run build",
|
"prepublishOnly": "npm ci && npm run build",
|
||||||
"test": "nyc mocha --require ts-node/register --ui mocha-typescript 'test/*.spec.ts'",
|
"preversion": "npm run prepublishOnly",
|
||||||
"tslint": "tslint 'src/**/*.ts'"
|
"push": "git push && git push origin \"v$npm_package_version\"",
|
||||||
|
"test": "nyc mocha --ui mocha-typescript 'test/*.spec.ts'",
|
||||||
|
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
||||||
},
|
},
|
||||||
"description": "Node.js library to interact with the StApps backend service",
|
"description": "Node.js library to interact with the StApps backend service",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@krlwlfrt/async-pool": "0.1.0",
|
"@krlwlfrt/async-pool": "0.1.0",
|
||||||
"@openstapps/core": "0.18.0",
|
"@openstapps/core": "0.21.0",
|
||||||
"@openstapps/logger": "0.0.5",
|
"@openstapps/logger": "0.3.1",
|
||||||
"@types/cli-progress": "1.8.1",
|
"@types/cli-progress": "1.8.1",
|
||||||
"@types/node": "10.14.6",
|
"@types/node": "10.14.8",
|
||||||
"@types/request": "2.48.1",
|
"@types/request": "2.48.1",
|
||||||
"@types/traverse": "0.6.32",
|
"@types/traverse": "0.6.32",
|
||||||
"@types/uuid": "3.4.4",
|
"@types/uuid": "3.4.4",
|
||||||
@@ -30,26 +33,26 @@
|
|||||||
},
|
},
|
||||||
"license": "GPL-3.0-only",
|
"license": "GPL-3.0-only",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@openstapps/configuration": "0.12.0",
|
"@openstapps/configuration": "0.20.0",
|
||||||
"@types/chai": "4.1.7",
|
"@types/chai": "4.1.7",
|
||||||
"@types/chai-as-promised": "7.1.0",
|
"@types/chai-as-promised": "7.1.0",
|
||||||
"@types/chai-spies": "1.0.0",
|
"@types/chai-spies": "1.0.0",
|
||||||
"@types/mocha": "5.2.6",
|
"@types/mocha": "5.2.7",
|
||||||
"@types/nock": "9.3.1",
|
"@types/nock": "10.0.3",
|
||||||
"chai": "4.2.0",
|
"chai": "4.2.0",
|
||||||
"chai-as-promised": "7.1.1",
|
"chai-as-promised": "7.1.1",
|
||||||
"chai-spies": "1.0.0",
|
"chai-spies": "1.0.0",
|
||||||
"conventional-changelog-cli": "2.0.12",
|
"conventional-changelog-cli": "2.0.21",
|
||||||
"mocha": "6.1.3",
|
"mocha": "6.1.4",
|
||||||
"mocha-typescript": "1.1.17",
|
"mocha-typescript": "1.1.17",
|
||||||
"nock": "10.0.6",
|
"nock": "10.0.6",
|
||||||
"nyc": "14.0.0",
|
"nyc": "14.1.1",
|
||||||
"prepend-file-cli": "1.0.6",
|
"prepend-file-cli": "1.0.6",
|
||||||
"rimraf": "2.6.3",
|
"rimraf": "2.6.3",
|
||||||
"ts-node": "8.1.0",
|
"ts-node": "8.2.0",
|
||||||
"tslint": "5.15.0",
|
"tslint": "5.17.0",
|
||||||
"typedoc": "0.14.2",
|
"typedoc": "0.14.2",
|
||||||
"typescript": "3.4.3"
|
"typescript": "3.5.1"
|
||||||
},
|
},
|
||||||
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
@@ -61,7 +64,7 @@
|
|||||||
"Roman Klopsch"
|
"Roman Klopsch"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@openstapps/core": "~0.18.0"
|
"@openstapps/core": "~0.21.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -77,7 +80,6 @@
|
|||||||
"branches": 95,
|
"branches": 95,
|
||||||
"check-coverage": true,
|
"check-coverage": true,
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"src/test/**/*.spec.ts",
|
|
||||||
"src/cli.ts"
|
"src/cli.ts"
|
||||||
],
|
],
|
||||||
"extension": [
|
"extension": [
|
||||||
@@ -93,6 +95,9 @@
|
|||||||
"html",
|
"html",
|
||||||
"text-summary"
|
"text-summary"
|
||||||
],
|
],
|
||||||
|
"require": [
|
||||||
|
"ts-node/register"
|
||||||
|
],
|
||||||
"statements": 95
|
"statements": 95
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user