build: update dependencies

This commit is contained in:
Jovan Krunić
2019-01-28 14:11:43 +01:00
parent db240aa4b1
commit e37a23e8e0
9 changed files with 260 additions and 159 deletions

View File

@@ -4,6 +4,7 @@
"scripts": {
"build": "npm run tslint && npm run compile && npm run documentation",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"check-configuration": "openstapps-configuration",
"compile": "rm -rf lib/* && tsc && sed -i '1i#!/usr/bin/env node' lib/cli.js",
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
"prepareOnly": "npm run build",
@@ -12,40 +13,40 @@
},
"description": "Node.js library to interact with the StApps backend service",
"dependencies": {
"@openstapps/core": "0.0.2",
"@openstapps/logger": "0.0.3",
"@openstapps/core": "0.3.0",
"@openstapps/logger": "0.0.5",
"@types/cli-progress": "1.8.0",
"@types/node": "10.12.10",
"@types/node": "10.12.18",
"@types/request": "2.48.1",
"@types/uuid": "3.4.4",
"async-pool-native": "0.1.0",
"cli-progress": "2.1.0",
"cli-progress": "2.1.1",
"commander": "2.19.0",
"moment": "2.22.2",
"moment": "2.24.0",
"request": "2.88.0",
"uuid": "3.3.2"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@openstapps/configuration": "0.0.2",
"@openstapps/configuration": "0.5.1",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/chai-spies": "1.0.0",
"@types/mocha": "5.2.5",
"@types/nock": "9.3.0",
"@types/nock": "9.3.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"conventional-changelog-cli": "2.0.11",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"nock": "10.0.2",
"nock": "10.0.6",
"nyc": "13.1.0",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typedoc": "0.13.0",
"typescript": "3.1.6"
"source-map-support": "0.5.10",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typedoc": "0.14.2",
"typescript": "3.2.4"
},
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"contributors": [
@@ -54,7 +55,7 @@
"Jovan Krunic <jovan.krunic@gmail.com>"
],
"peerDependencies": {
"@openstapps/core": "~0.0.2"
"@openstapps/core": "~0.3.0"
},
"repository": {
"type": "git",
@@ -66,26 +67,26 @@
"main": "lib/client.js",
"typings": "lib/index.d.ts",
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 95,
"statements": 95,
"functions": 95,
"all": true,
"branches": 95,
"include": [
"src"
],
"check-coverage": true,
"exclude": [
"src/test/**/*.spec.ts",
"src/cli.ts"
],
"extension": [
".ts"
],
"functions": 95,
"include": [
"src"
],
"lines": 95,
"per-file": true,
"reporter": [
"html",
"text-summary"
],
"sourceMap": true,
"all": true
"statements": 95
}
}