Files
openstapps/package.json
Michel Jonathan Schmitz 053a6ce23f refactor: update dependencies
2021-04-27 15:30:05 +02:00

89 lines
2.6 KiB
JSON

{
"name": "@openstapps/proxy",
"version": "0.0.1",
"description": "NGINX proxy that is dynamically configured by a Node.js script",
"main": "./lib/cli.js",
"dependencies": {
"@openstapps/logger": "0.5.0",
"@types/config": "0.0.36",
"@types/dockerode": "2.5.34",
"@types/node": "10.17.17",
"@types/sha1": "1.1.2",
"config": "3.3.2",
"dockerode": "3.2.1",
"mustache": "4.0.1"
},
"devDependencies": {
"@openstapps/configuration": "0.25.0",
"@testdeck/mocha": "0.1.2",
"@types/chai": "4.2.12",
"@types/chai-spies": "1.0.2",
"@types/mustache": "4.0.1",
"chai": "4.2.0",
"chai-spies": "1.0.0",
"conventional-changelog-cli": "2.1.0",
"mocha": "7.1.1",
"nyc": "15.1.0",
"prepend-file-cli": "1.0.6",
"rimraf": "3.0.2",
"ts-node": "8.6.2",
"tslint": "6.1.3",
"typedoc": "0.18.0",
"typescript": "4.0.3"
},
"scripts": {
"build": "npm run tslint && npm run compile",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"check-configuration": "openstapps-configuration",
"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",
"postversion": "npm run changelog",
"prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly",
"push": "git push && git push origin \"v$npm_package_version\"",
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"test": "nyc mocha --require source-map-support/register --require ts-node/register 'test/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:openstapps/proxy.git"
},
"author": "Anselm Rochus Stordeur <anselmstordeur@gmail.com>",
"contributors": [
"André Bierlein <andre.mt.bierlein@gmail.com>",
"Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"Benjamin Joeckel",
"Jovan Krunic <jovan.krunic@gmail.com>",
"Rainer Killinger"
],
"license": "AGPL-3.0-only",
"openstappsConfiguration": {
"forPackaging": false,
"ignoreCiEntries": [
"package"
]
},
"nyc": {
"all": true,
"branches": 95,
"check-coverage": true,
"exclude": [
"src/cli.ts"
],
"extension": [
".ts"
],
"functions": 95,
"include": [
"src"
],
"lines": 95,
"per-file": true,
"reporter": [
"html",
"text-summary"
],
"statements": 95
}
}