UNPKG

ts-markdown

Version:

An extensible TypeScript markdown generator that takes JSON and creates a markdown document.

55 lines (54 loc) 1.79 kB
{ "name": "ts-markdown", "version": "1.3.0", "description": "An extensible TypeScript markdown generator that takes JSON and creates a markdown document.", "repository": "https://github.com/kgar/ts-markdown", "homepage": "https://github.com/kgar/ts-markdown#readme", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "rimraf dist && tsc && npm run build-web", "build-web": "rimraf dist.browser && rollup -c && uglifyjs dist.browser/ts-markdown.js --output dist.browser/ts-markdown.min.js --compress --mangle", "build-watch": "tsc --watch", "test": "jest", "test-watch": "jest --watch", "prettier": "prettier --write src", "prepare": "husky install", "refresh-index": "npx barrelsby --delete --location top --exclude \"dist\" \"test.ts\" \"jest.config\" --directory ./src", "copy-custom-docs": "npx copyfiles --error --verbose --flat \"custom-docs/playground.js\" \"custom-docs/playground.css\" \"custom-docs/playground.html\" \"custom-docs/ts-markdown.js\" \"docs\"", "refresh-docs": "typedoc && npm run copy-custom-docs" }, "keywords": [ "markdown", "json", "generate", "data", "render", "typescript", "md", "js", "ts" ], "author": "KGar", "license": "MIT", "devDependencies": { "@knodes/typedoc-plugin-pages": "^0.23.1", "@rollup/plugin-typescript": "^8.3.4", "@types/jest": "^28.1.4", "husky": "^8.0.0", "jest": "^28.1.2", "prettier": "^2.7.1", "pretty-quick": "^3.1.3", "rimraf": "^3.0.2", "rollup": "^2.77.2", "ts-jest": "^28.0.5", "ts-node": "^10.8.2", "tslib": "^2.4.0", "typedoc": "^0.23.9", "typescript": "^4.7.4", "uglify-js": "^3.16.3" }, "dependencies": { "yaml": "^2.4.5" } }