mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 13:02:54 +00:00
57 lines
1.8 KiB
JSON
57 lines
1.8 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.0.5",
|
|
"@types/config": "0.0.34",
|
|
"@types/dockerode": "2.5.12",
|
|
"@types/sha1": "1.1.1",
|
|
"config": "3.0.1",
|
|
"fs-extra": "7.0.1",
|
|
"mustache": "3.0.1",
|
|
"sha1": "1.1.1",
|
|
"typescript": "3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.6.0",
|
|
"@types/chai": "4.1.7",
|
|
"@types/mustache": "0.8.32",
|
|
"@types/sinon": "7.0.6",
|
|
"chai": "4.2.0",
|
|
"conventional-changelog-cli": "2.0.12",
|
|
"dockerode": "2.5.8",
|
|
"mocha": "5.2.0",
|
|
"mocha-typescript": "1.1.17",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "2.6.3",
|
|
"sinon": "7.2.4",
|
|
"ts-node": "8.0.2",
|
|
"tslint": "5.12.1",
|
|
"typedoc": "0.14.2"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run tslint && npm run compile && npm run documentation",
|
|
"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 --excludeExternals --mode modules --out docs src",
|
|
"prepublishOnly": "npm run build",
|
|
"tslint": "tslint 'src/**/*.ts'",
|
|
"test": "node_modules/.bin/mocha --opts test/mocha.opts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@gitlab.com:openstapps/proxy.git"
|
|
},
|
|
"author": "Anselm 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>"
|
|
],
|
|
"license": "AGPL-3.0-only"
|
|
}
|