console-app/package.json

33 lines
752 B
JSON
Raw Normal View History

2020-05-05 11:56:36 +02:00
{
"name": "@scode/console-app",
"version": "1.0.0",
"main": "index.js",
"author": "Timo Hocker <thocker@oas.de>",
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@scode/eslint-config-ts": "^1.0.31",
2020-05-05 12:48:36 +02:00
"@types/fs-extra": "^8.1.0",
2020-05-05 13:19:17 +02:00
"@types/yargs": "^15.0.4",
2020-05-05 11:56:36 +02:00
"ava": "^3.8.1",
"eslint": "^6.8.0",
"nyc": "^15.0.1",
"typescript": "^3.8.3"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "echo \"no test\"",
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",
"/dist/"
],
"dependencies": {
2020-05-05 13:19:17 +02:00
"@scode/modelling": "^1.0.26",
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-05 13:19:17 +02:00
}