forked from viktorstrate/algebra-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 919 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "algebra-latex",
"version": "2.0.0",
"scripts": {
"build": "rm -rf ./lib && babel src -d lib",
"start": "node .",
"prettify": "prettier **/*.js --write",
"test": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "mocha --require babel-core/register --recursive --watch",
"prepublish": "npm run build"
},
"description": "Parse Latex math to a regular math string or algebra.js",
"main": "./lib/index.js",
"bin": "./lib/cli.js",
"repository": "https://github.com/viktorstrate/latex-mathify.git",
"author": "viktorstrate <[email protected]>",
"license": "MIT",
"devDependencies": {
"algebra.js": "^0.2.6",
"algebrite": "^1.3.1",
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.7.0",
"coffeequate": "^1.3.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.2",
"prettier": "^2.0.5"
}
}