highlight-ts
Version:
Highlight.JS in TypeScript (and ES6).
53 lines (52 loc) • 1.42 kB
JSON
{
"name": "highlight-ts",
"version": "9.12.1-2",
"description": "Highlight.JS in TypeScript (and ES6).",
"main": "highlight.js",
"typings": "highlight.d.ts",
"module": "es/highlight.js",
"scripts": {
"compile": "npm run compile-es && npm run compile-js",
"clean": "npm run clean-es && npm run clean-js",
"compile-es": "tsc --outDir es --module es6",
"clean-es": "rm -rf es",
"compile-js": "tsc --outDir .",
"clean-js": "rm -rf *.d.ts *.js *.js.map render languages",
"prepack": "npm run compile",
"postpack": "npm run clean",
"compile-test": "browserify -d test/index.ts -p [ tsify --noImplicitAny ] -o test-out.js",
"clean-test": "rm -f test-out.js",
"test": "testem ci",
"test-node": "mocha -r ts-node/register test/index.ts -R spec",
"test-dev": "testem"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katyo/highlight-ts.git"
},
"keywords": [
"syntax",
"hightlight",
"markup",
"render"
],
"author": "K. <kayo@illumium.org>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/katyo/literium/issues"
},
"devDependencies": {
"@types/mocha": "^5",
"@types/node": "^8",
"browserify": "^16",
"mocha": "^5",
"should": "^13",
"testem": "^2",
"ts-node": "^7",
"tsify": "^4",
"typescript": "^3"
},
"dependencies": {
"tslib": "^1"
}
}