e133f76cd1
Bumps [ts-node](https://github.com/TypeStrong/ts-node) from 8.10.2 to 9.1.1. - [Release notes](https://github.com/TypeStrong/ts-node/releases) - [Commits](https://github.com/TypeStrong/ts-node/compare/v8.10.2...v9.1.1) Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "docgen",
|
|
"description": "Tool for generating API Documentation for itself",
|
|
"version": "0.1.1",
|
|
"private": true,
|
|
"homepage": "https://backstage.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/backstage/backstage",
|
|
"directory": "packages/docgen"
|
|
},
|
|
"keywords": [
|
|
"backstage"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"build": "backstage-cli build --outputs cjs",
|
|
"lint": "backstage-cli lint",
|
|
"test": "backstage-cli test",
|
|
"docgen": "backstage-docgen generate --output ../../docs/reference/utility-apis --format github && prettier --write ../../docs/reference/utility-apis",
|
|
"clean": "backstage-cli clean",
|
|
"start": "nodemon --"
|
|
},
|
|
"bin": {
|
|
"backstage-docgen": "bin/backstage-docgen"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.0.0",
|
|
"commander": "^6.1.0",
|
|
"fs-extra": "^9.0.0",
|
|
"github-slugger": "^1.3.0",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.1",
|
|
"@types/github-slugger": "^1.3.0",
|
|
"@types/node": "^14.14.32",
|
|
"nodemon": "^2.0.2"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist"
|
|
],
|
|
"nodemonConfig": {
|
|
"watch": "./src",
|
|
"exec": "bin/backstage-docgen",
|
|
"ext": "ts"
|
|
}
|
|
}
|