console-app/package.json

40 lines
963 B
JSON

{
"name": "@sapphirecode/console-app",
"version": "1.0.0",
"main": "dist/lib/index.js",
"author": "Timo Hocker <timo@scode.ovh>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@git.scode.ovh:timo/console-app"
},
"description": "read parameters from env, console args or interactively",
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@sapphirecode/eslint-config-ts": "^1.1.4",
"@types/fs-extra": "^9.0.0",
"@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",
"ci": "yarn && node jenkins.js"
},
"files": [
"LICENSE",
"/dist/lib/",
"/lib/"
],
"dependencies": {
"@sapphirecode/modelling": "^1.0.35",
"enquirer": "^2.3.5",
"fs-extra": "^9.0.0",
"yargs": "^15.3.1"
}
}