Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mathlive

Package Overview
Dependencies
Maintainers
1
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mathlive - npm Package Compare versions

Comparing version 0.32.8 to 0.32.9

dist/fonts/.DS_Store

249

package.json
{
"name": "mathlive",
"version": "0.32.8",
"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": {
"clean": "rimraf build dist docs",
"build-js": "",
"watch-js": "",
"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",
"lint:fix": "eslint src/ -c .eslintrc.json --fix",
"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": "",
"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\"",
"rollup": "rollup --config",
"watch-rollup": "rollup --config --watch",
"dist": "npm-run-all -s clean build docs",
"deploy": "bash ./scripts/deploy",
"deploy-ci": "bash ./scripts/deploy-ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run dist && git add . && npm run test"
}
},
"lint-staged": {
"/src/**/*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"exclude": [
"test",
"**/debug.js",
"dist",
"build"
"name": "mathlive",
"version": "0.32.9",
"description": "Render and edit beautifully typeset math",
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://patreon.com/arnog"
},
"repository": {
"type": "git",
"url": "https://github.com/arnog/mathlive.git"
},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
],
"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.7.0",
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"autoprefixer": "^9.7.1",
"chokidar-cli": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-watch": "^6.0.1",
"http-server": "^0.11.1",
"husky": "^3.0.9",
"jsdoc": "^3.6.3",
"less": "^3.10.3",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"postcss-cli": "^6.1.3",
"rimraf": "^3.0.0",
"rollup": "^1.26.3",
"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": {}
"files": [
"/dist",
"/src",
"/AUTHORS",
"/LICENSE.txt"
],
"main": "./dist/mathlive.js",
"types": "./dist/mathlive.d.ts",
"scripts": {
"clean": "rimraf build dist docs",
"build-js": "rollup --config",
"watch-js": "rollup --config --watch",
"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-ts-types build-js",
"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",
"lint:fix": "eslint src/ -c .eslintrc.json --fix",
"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": "",
"docs": "jsdoc -c ./jsdoc.conf.json && printf \"docs.mathlive.io\" > docs/CNAME",
"watch-docs": "chokidar \"src/*.js\" \"tutorials/*.md\" \"examples/*.md\" -c \"npm run docs -s\"",
"dist": "npm-run-all -s clean build docs",
"deploy": "bash ./scripts/deploy",
"deploy-ci": "bash ./scripts/deploy-ci"
},
"husky": {
"hooks": {
"pre-push": "npm run dist && git diff HEAD --quiet && npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"/src/**/*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"exclude": [
"test",
"**/debug.js",
"dist",
"build"
],
"report-dir": "./build/coverage",
"reporter": "html"
},
"engines": {
"npm": ">=6.13",
"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.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"autoprefixer": "^9.7.3",
"chokidar-cli": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-watch": "^6.0.1",
"http-server": "^0.12.0",
"husky": "^3.1.0",
"jsdoc": "^3.6.3",
"less": "^3.10.3",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"postcss-cli": "^6.1.3",
"rimraf": "^3.0.0",
"rollup": "^1.27.10",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-terser": "^5.1.3",
"sutro-jsdoc-theme": "^1.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tsd-jsdoc": "^2.4.0"
},
"dependencies": {}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc