typeset
Version:
Typesetting for the web
57 lines (56 loc) • 1.68 kB
JSON
{
"name": "typeset",
"version": "0.3.5",
"description": "Typesetting for the web",
"keywords": [
"typeset",
"typography",
"hyphenation",
"ligatures",
"optical margin alignment",
"small caps"
],
"homepage": "https://github.com/davidmerfield/Typeset.js",
"bugs": {
"url": "https://github.com/davidmerfield/Typeset.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmerfield/Typeset.js.git"
},
"license": "MIT",
"author": "David Merfield",
"contributors": [
"Daniel Haim <daniel@rgbyk.com> (https://danielhaim.com)"
],
"main": "src/index.js",
"bin": {
"typeset-js": "src/cmd.js"
},
"scripts": {
"build": "npm run clean && npm run build-dev && npm run build-prod",
"build-dev": "./node_modules/webpack/bin/webpack.js",
"build-prod": "PROD=1 ./node_modules/webpack/bin/webpack.js",
"clean": "rm -rf build/",
"jshint": "jshint ./src",
"test": "mocha -u bdd -R spec -t 500 --recursive",
"watch": "mocha test -u bdd -R spec -t 500 --recursive --watch || true",
"release": "npm version patch && npm run build && git add package.json package-lock.json build/ && git commit -m 'Bump version and build package for release' && git push"
},
"dependencies": {
"chai": "^4.3.6",
"cheerio": "^0.22.0",
"commander": "^6.2.1",
"html-entities": "^1.4.0",
"html-minifier": "^4.0.0",
"hypher": "^0.2.5",
"jsdom": "^22.1.0",
"jshint": "^2.13.5",
"minimist": "^1.2.6",
"mocha": "^8.4.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"xmlserializer": "^0.6.1"
}
}