Files
backstage/packages/techdocs-cli/package.json
T
2020-06-22 15:29:03 +02:00

55 lines
1.2 KiB
JSON

{
"name": "@backstage/techdocs-cli",
"description": "CLI for running TechDocs locally.",
"version": "0.1.1-alpha.9",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "https://github.com/spotify/backstage",
"directory": "packages/techdocs-cli"
},
"keywords": [
"backstage",
"techdocs"
],
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"scripts": {
"build": "backstage-cli build --outputs cjs",
"lint": "backstage-cli lint",
"test": "backstage-cli test --passWithNoTests",
"clean": "backstage-cli clean",
"start": "nodemon --"
},
"bin": {
"techdocs": "bin/techdocs-cli"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^4.1.1",
"dashify": "^2.0.0",
"inquirer": "^7.0.4",
"jest": "^26.0.1",
"ora": "^4.0.3"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/node": "^13.7.2",
"@types/ora": "^3.2.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2"
},
"files": [
"bin",
"dist/**/*.js"
],
"nodemonConfig": {
"watch": "./src",
"exec": "bin/techdocs-cli",
"ext": "ts"
}
}