console-app/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2020-05-05 11:56:36 +02:00
{
2020-05-05 19:21:53 +02:00
"name": "@sapphirecode/console-app",
"version": "2.1.2",
2020-05-09 19:51:43 +02:00
"main": "dist/lib/index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
2020-05-05 11:56:36 +02:00
"license": "MIT",
2020-05-15 16:53:45 +02:00
"repository": {
"type": "git",
"url": "https://git.scode.ovh:timo/console-app.git"
2020-05-15 16:53:45 +02:00
},
"bugs": "https://redmine.scode.ovh/projects/console-app",
2020-07-24 07:45:46 +02:00
"description": "read parameters from env, config files, console args or interactively",
2020-05-05 11:56:36 +02:00
"devDependencies": {
"@ava/typescript": "^1.1.1",
2020-05-15 16:53:45 +02:00
"@sapphirecode/eslint-config-ts": "^1.1.4",
2020-05-17 19:44:30 +02:00
"@types/fs-extra": "^9.0.0",
2020-05-27 17:39:32 +02:00
"@types/hjson": "^2.4.1",
2020-05-15 16:53:45 +02:00
"@types/yargs": "^15.0.5",
2020-05-09 19:51:43 +02:00
"ava": "^3.8.2",
2020-05-15 16:53:45 +02:00
"eslint": "^7.0.0",
2020-05-05 11:56:36 +02:00
"nyc": "^15.0.1",
2020-05-15 16:53:45 +02:00
"typescript": "^3.9.2"
2020-05-05 11:56:36 +02:00
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-05-09 19:51:43 +02:00
"test": "tsc && nyc ava",
2020-07-10 08:31:51 +02:00
"compile": "tsc"
2020-05-05 11:56:36 +02:00
},
"files": [
"LICENSE",
2020-05-18 10:28:50 +02:00
"/dist/lib/",
"/lib/"
2020-05-05 11:56:36 +02:00
],
"dependencies": {
2020-05-15 16:53:45 +02:00
"@sapphirecode/modelling": "^1.0.35",
2020-05-27 09:55:52 +02:00
"@sapphirecode/utilities": "^1.3.4",
2020-05-05 11:56:36 +02:00
"enquirer": "^2.3.5",
2020-05-05 12:48:36 +02:00
"fs-extra": "^9.0.0",
2020-05-27 17:39:32 +02:00
"hjson": "^3.2.1",
2020-05-05 11:56:36 +02:00
"yargs": "^15.3.1"
},
"keywords": [
"interactive",
"console input",
"config",
"command line args",
"environment variables",
"parsing"
]
2020-07-24 07:45:46 +02:00
}