console-app/package.json

39 lines
950 B
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",
2020-05-05 11:56:36 +02:00
"version": "1.0.0",
2020-05-09 19:51:43 +02:00
"main": "dist/lib/index.js",
2020-05-15 16:53:45 +02:00
"author": "Timo Hocker <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": "git@git.scode.ovh:timo/console-app"
},
"description": "read parameters from env, 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-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-05-05 13:19:17 +02:00
"compile": "tsc",
"ci": "yarn && node jenkins.js"
2020-05-05 11:56:36 +02:00
},
"files": [
"LICENSE",
2020-05-09 19:51:43 +02:00
"/dist/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-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-05 11:56:36 +02:00
"yargs": "^15.3.1"
}
2020-05-17 19:44:30 +02:00
}