mathlive
Version:
Render and edit beautifully typeset math
115 lines (114 loc) • 3.54 kB
JSON
{
"name": "mathlive",
"version": "0.32.2",
"description": "Render and edit beautifully typeset math",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arnog/mathlive.git"
},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
],
"files": [
"/dist",
"/src",
"/AUTHORS",
"/LICENSE.txt"
],
"main": "./dist/mathlive.js",
"types": "./dist/mathlive.d.ts",
"scripts": {
"preclean": "echo Clean directories...",
"clean": "rimraf build dist docs",
"build-js": "eslint src/ -c .eslintrc.json",
"watch-js": "esw -w src/",
"build-corecss": "lessc css/mathlive.core.less dist/mathlive.core.css",
"build-othercss": "lessc css/mathlive.less dist/mathlive.css",
"build-postcss": "postcss dist/*.css -d dist",
"build-css": "npm-run-all -s build-corecss build-othercss build-postcss",
"watch-css": "chokidar \"css/*.less\" --initial -c \"npm run build-css -s\"",
"build-ts-types": "jsdoc -t node_modules/tsd-jsdoc/dist -d ./build -a public -r ./src/",
"build": "npm-run-all build-css build-js build-ts-types rollup",
"watch": "npm-run-all -p watch-*",
"http-server": "http-server . -c-1 --cors='*' -o http://localhost:8080/examples/index.html",
"start": "npm-run-all -p watch-js watch-css http-server",
"lint": "eslint src/ -c .eslintrc.json",
"pretest": "echo Test...",
"test": "tape -r @babel/register test/* | tap-spec",
"watch-test": "chokidar \"src/*.js\" -c \"npm run test -s\" ",
"coverage": "nyc npm run babel-node ./test/test.js && nyc report",
"coverage:report": "nyc report",
"prepare": "npm run dist",
"predocs": "echo Build docs...",
"docs": "jsdoc -c ./jsdoc.conf.json && echo docs.mathlive.io > docs/CNAME",
"watch-docs": "chokidar \"src/*.js\" \"tutorials/*.md\" \"examples/*.md\" -c \"npm run docs -s\"",
"prerollup": "echo Rollup...",
"rollup": "rollup --config",
"watch-rollup": "rollup --config --watch",
"dist": "npm-run-all -s clean build docs test"
},
"nyc": {
"exclude": [
"test",
"**/debug.js",
"dist",
"build"
],
"report-dir": "./build/coverage",
"reporter": "html"
},
"engines": {
"npm": ">=6.7",
"node": ">=10.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
],
"author": "Arno Gourdol <arno@arno.org>",
"contributors": [
"Louis Larpin (lilfaf.github.io)",
"Neil Soiffer (https://github.com/NSoiffer)",
"Jason Boxman (https://github.com/jboxman)",
"Synergy Codes (https://www.synergycodes.com/)",
"Rafał Piekarski (https://github.com/rpdiss)"
],
"bugs": "https://github.com/arnog/mathlive/issues/",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"autoprefixer": "^9.6.1",
"chokidar-cli": "^2.0.0",
"cssnano": "^4.1.10",
"eslint": "^6.4.0",
"eslint-watch": "^6.0.0",
"http-server": "^0.11.1",
"jsdoc": "^3.6.3",
"less": "^3.10.3",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"postcss-cli": "^6.1.3",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-terser": "^5.1.2",
"sutro-jsdoc-theme": "^1.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tsd-jsdoc": "^2.4.0"
},
"dependencies": {}
}