-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f9ec0c
commit 43a97ce
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "latex.js", | ||
"description": "JavaScript LaTeX to HTML5 translator", | ||
"version": "0.9.2", | ||
"version": "0.10.0", | ||
"author": { | ||
"name": "Michael Brade", | ||
"email": "[email protected]" | ||
|
@@ -24,14 +24,15 @@ | |
"dist/html-generator.js", | ||
"dist/documentclasses/", | ||
"dist/css/", | ||
"dist/fonts/" | ||
"dist/fonts/", | ||
"dist/js/" | ||
], | ||
"scripts": { | ||
"clean": "rimraf dist bin;", | ||
"build": "npm run devbuild;uglifyjs dist/plugin-pegjs.js -cm -o dist/plugin-pegjs.js;uglifyjs dist/latex-parser.js -cm -o dist/latex-parser.js;uglifyjs dist/macros.js -cm -o dist/macros.js;uglifyjs dist/symbols.js -cm -o dist/symbols.js;uglifyjs dist/html-generator.js -cm -o dist/html-generator.js;uglifyjs dist/documentclasses/base.js -cm -o dist/documentclasses/base.js;uglifyjs dist/documentclasses/article.js -cm -o dist/documentclasses/article.js;uglifyjs dist/documentclasses/book.js -cm -o dist/documentclasses/book.js;uglifyjs dist/documentclasses/report.js -cm -o dist/documentclasses/report.js;mkdirp bin;lsc -bc --no-header -o bin src/latex.js.ls;", | ||
"devbuild": "mkdirp dist/documentclasses;mkdirp dist/css;mkdirp dist/js;mkdirp dist/fonts;rsync -a src/css/ dist/css/;rsync -a src/fonts/ dist/fonts/;rsync -a src/js/ dist/js/;lsc -c -o dist src/plugin-pegjs.ls src/symbols.ls src/macros.ls src/html-generator.ls;lsc -c -o dist/documentclasses src/documentclasses/;pegjs -o dist/latex-parser.js --plugin ./dist/plugin-pegjs src/latex-parser.pegjs;", | ||
"docs": "npm run devbuild && webpack && uglifyjs -cm -o docs/js/playground.bundle.pack.js docs/js/playground.bundle.js;", | ||
"pgcc": "google-closure-compiler --compilation_level SIMPLE --externs src/externs.js --js_output_file docs/js/playground.bundle.pack.js docs/js/playground.bundle.js;", | ||
"pgcc": "google-closure-compiler --compilation_level SIMPLE --externs src/externs.js --js_output_file docs/js/playground.bundle.pack.js docs/js/playground.bundle.js;", | ||
"test": "mocha test/tests.ls;", | ||
"iron": "iron-node node_modules/.bin/_mocha test/tests.ls;", | ||
"cover": "istanbul cover --dir test/coverage _mocha test/tests.ls;" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters