tsdoc/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2019-05-13 17:41:02 +00:00
{
"name": "@gitzone/tsdoc",
2021-03-08 01:26:43 +00:00
"version": "1.1.8",
2019-05-13 17:41:02 +00:00
"private": false,
"description": "a tool for better documentation",
2020-11-24 20:24:30 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-05-13 17:41:02 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2019-05-14 06:50:50 +00:00
"bin": {
"tsdoc": "cli.js"
},
2019-05-13 17:41:02 +00:00
"scripts": {
2020-11-24 20:24:30 +00:00
"test": "(tstest test/) && (node ./cli.ts.js)",
"build": "(tsbuild --web)",
2019-05-13 17:41:02 +00:00
"buildMkdocs": "(cd mkdocs/originalrepo && docker rmi -f mkdocs && docker build -t mkdocs .)",
"format": "(gitzone format)"
},
"devDependencies": {
2020-11-24 20:24:30 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
2021-03-06 19:21:13 +00:00
"@pushrocks/tapbundle": "^3.2.14",
2021-03-08 01:06:18 +00:00
"@types/node": "^14.14.32",
2020-11-24 20:24:30 +00:00
"tslint": "^6.1.3",
2019-05-13 17:41:02 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2020-11-24 20:24:30 +00:00
"@pushrocks/early": "^3.0.6",
"@pushrocks/smartcli": "^3.0.12",
"@pushrocks/smartfile": "^8.0.8",
"@pushrocks/smartlog": "^2.0.39",
"@pushrocks/smartlog-destination-local": "^8.0.8",
"@pushrocks/smartshell": "^2.0.26",
2021-03-06 19:21:13 +00:00
"typedoc": "^0.20.30",
"typescript": "^4.2.3"
2019-05-28 10:11:53 +00:00
},
"files": [
2020-11-24 20:24:30 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 10:11:53 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-11-24 20:24:30 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-05-28 10:11:53 +00:00
]
2021-03-06 19:21:14 +00:00
}