console-app/package.json
Timo Hocker 7521fb310c
Some checks failed
continuous-integration/drone/push Build is failing
update description
2020-07-24 07:45:46 +02:00

54 lines
1.2 KiB
JSON

{
"name": "@sapphirecode/console-app",
"version": "2.1.2",
"main": "dist/lib/index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.scode.ovh:timo/console-app.git"
},
"bugs": "https://redmine.scode.ovh/projects/console-app",
"description": "read parameters from env, config files, console args or interactively",
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@sapphirecode/eslint-config-ts": "^1.1.4",
"@types/fs-extra": "^9.0.0",
"@types/hjson": "^2.4.1",
"@types/yargs": "^15.0.5",
"ava": "^3.8.2",
"eslint": "^7.0.0",
"nyc": "^15.0.1",
"typescript": "^3.9.2"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "tsc && nyc ava",
"compile": "tsc"
},
"files": [
"LICENSE",
"/dist/lib/",
"/lib/"
],
"dependencies": {
"@sapphirecode/modelling": "^1.0.35",
"@sapphirecode/utilities": "^1.3.4",
"enquirer": "^2.3.5",
"fs-extra": "^9.0.0",
"hjson": "^3.2.1",
"yargs": "^15.3.1"
},
"keywords": [
"interactive",
"console input",
"config",
"command line args",
"environment variables",
"parsing"
]
}