tsdoc/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2019-05-13 17:41:02 +00:00
{
"name": "@gitzone/tsdoc",
2019-09-23 14:26:38 +00:00
"version": "1.0.21",
2019-05-13 17:41:02 +00:00
"private": false,
"description": "a tool for better documentation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"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": {
2019-05-14 15:39:33 +00:00
"test": "(tstest test/) && (node ./cli.ts.js) && rm -rf public/",
2019-05-13 17:41:02 +00:00
"build": "(tsbuild)",
"buildMkdocs": "(cd mkdocs/originalrepo && docker rmi -f mkdocs && docker build -t mkdocs .)",
"format": "(gitzone format)"
},
"devDependencies": {
2019-09-23 14:26:38 +00:00
"@gitzone/tsbuild": "^2.1.17",
2019-05-28 10:11:11 +00:00
"@gitzone/tstest": "^1.0.24",
2019-09-23 14:26:38 +00:00
"@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^12.7.5",
"tslint": "^5.20.0",
2019-05-13 17:41:02 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2019-05-14 06:50:50 +00:00
"@pushrocks/early": "^3.0.3",
2019-05-13 17:41:02 +00:00
"@pushrocks/smartcli": "^3.0.7",
2019-07-23 16:13:48 +00:00
"@pushrocks/smartfile": "^7.0.4",
2019-05-14 06:50:50 +00:00
"@pushrocks/smartlog": "^2.0.19",
2019-07-23 16:13:48 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.2",
2019-09-23 14:26:38 +00:00
"@pushrocks/smartshell": "^2.0.25",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
2019-05-28 10:11:53 +00:00
},
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
2019-09-23 14:26:38 +00:00
"dist_ts_web/*",
2019-05-28 10:11:53 +00:00
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-09-23 14:26:38 +00:00
}