mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 03:08:40 +00:00
This fixes a problem where the graceful-js dependency of the old less version is incompatible with node 7, and will cause warnings on node 6. The resulting katex.min.css is exactly the same as with the previous version, so the major version upgrade does not seem to affect the outcome. The less.Parser has been deprecated, and less.render is the supported approach now, so we have to switch the development server to that.
42 lines
848 B
JSON
42 lines
848 B
JSON
{
|
|
"name": "katex",
|
|
"version": "0.7.0-pre",
|
|
"description": "Fast math typesetting for the web.",
|
|
"main": "katex.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/Khan/KaTeX.git"
|
|
},
|
|
"files": [
|
|
"katex.js",
|
|
"cli.js",
|
|
"src/",
|
|
"dist/"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"browserify": "^10.2.4",
|
|
"clean-css": "~2.2.15",
|
|
"eslint": "^1.10.2",
|
|
"express": "~3.3.3",
|
|
"glob": "^5.0.15",
|
|
"jasmine": "^2.3.2",
|
|
"jasmine-core": "^2.3.4",
|
|
"js-yaml": "^3.3.1",
|
|
"jspngopt": "^0.1.0",
|
|
"less": "~2.7.1",
|
|
"nomnom": "^1.8.1",
|
|
"pako": "0.2.7",
|
|
"selenium-webdriver": "^2.46.1",
|
|
"uglify-js": "~2.4.15"
|
|
},
|
|
"bin": "cli.js",
|
|
"scripts": {
|
|
"test": "make lint test",
|
|
"prepublish": "make dist"
|
|
},
|
|
"dependencies": {
|
|
"match-at": "^0.1.0"
|
|
}
|
|
}
|