Files
KaTeX/package.json
Martin von Gagern 92034c17f9 Switch from jasmine-node to jasmine itself
Jasmine supports node these days, so there is no longer a need to use a
separate (and unmaintained) package to provide such bindings.

Making the switch exposed several misuses of the `toMatch` assertion in the
existing specification.  Most of them were converted to `toEqual`, since
`toMatch` is only for matching against regular expressions.
2015-11-10 12:38:49 +01:00

38 lines
750 B
JSON

{
"name": "katex",
"version": "0.6.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/"
],
"license": "MIT",
"devDependencies": {
"browserify": "^10.2.4",
"clean-css": "~2.2.15",
"express": "~3.3.3",
"jasmine": "^2.3.2",
"js-yaml": "^3.3.1",
"jshint": "^2.5.6",
"jspngopt": "^0.1.0",
"less": "~1.7.5",
"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"
},
"dependencies": {
"match-at": "^0.1.0"
}
}