matterhorn-cli
Version:
CLI to accompany Matterhorn boilerplate project
40 lines (39 loc) • 928 B
JSON
{
"name": "matterhorn-cli",
"version": "0.0.2",
"description": "CLI to accompany Matterhorn boilerplate project",
"bin": {
"matterhorn": "bin/index.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethan-Arrowood/matterhorn-cli.git"
},
"keywords": [
"nodejs",
"javascript",
"typescript",
"cli"
],
"author": "Ethan Arrowood",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ethan-Arrowood/matterhorn-cli/issues"
},
"homepage": "https://github.com/Ethan-Arrowood/matterhorn-cli#readme",
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/node": "^10.12.18",
"eslint": "^5.12.0",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
},
"dependencies": {
"chalk": "^2.4.2",
"figlet": "^1.2.1"
}
}