itutor-mathlive
Version:
Beautifully typeset math made easy
87 lines (86 loc) • 2.56 kB
JSON
{
"name": "itutor-mathlive",
"version": "0.23.5",
"description": "Beautifully typeset math made easy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arnog/mathlive.git"
},
"keywords": [
"math",
"editor",
"javascript",
"math-editing"
],
"main": "dist/mathlive.js",
"types": "dist/mathlive.d.ts",
"scripts": {
"clean": "rimraf build dist docs",
"build-js": "npm-run-all -p lint",
"watch-js": "esw -w src/",
"build-css": "lessc-each css build",
"watch-css": "npm run build-css && chokidar 'css/*.less' -c 'npm run build-css'",
"build": "npm-run-all -p build-css build-js docs",
"watch": "npm-run-all -p watch-css watch-js watch-docs && tape-watch test/* --watch",
"start": "npm run watch",
"dev": "npm run watch",
"lint": "eslint src/",
"test": "tape test/*",
"watch-test": "npm test && tape-watch test/* --watch",
"coverage": "nyc node ./test/test.js && nyc report",
"prepare": "npm run dist",
"docs": "jsdoc -c ./jsdoc.conf.json && echo \"docs.mathlive.io\" > docs/CNAME",
"watch-docs": "npm run docs && chokidar 'src/*.js' '*.md' -c 'npm run docs'",
"dist": "npm run clean && npm run build && postcss build/*.css -d dist && webpack --display-optimization-bailout",
"webpack": "webpack --display-optimization-bailout"
},
"nyc": {
"exclude": [
"test",
"**/debug.js",
"dist",
"build"
],
"report-dir": "./build/coverage",
"reporter": "html"
},
"engines": {
"node": ">=8.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"author": "Arno Gourdol <arno@arno.org>",
"contributors": [
"Louis Larpin (lilfaf.github.io)",
"Neil Soiffer (https://github.com/NSoiffer)"
],
"bugs": "https://github.com/arnog/mathlive/issues/",
"devDependencies": {
"autoprefixer": "^9.1.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"chokidar-cli": "^1.2.1",
"copy-webpack-plugin": "^4.5.2",
"cssnano": "^4.1.0",
"eslint": "^5.5.0",
"eslint-watch": "^4.0.2",
"jsdoc": "^3.5.5",
"less": "^3.8.1",
"lessc-each": "^1.1.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"postcss-cli": "^5.0.1",
"requirejs": "^2.3.6",
"rimraf": "^2.6.2",
"sutro-jsdoc-theme": "github:arnog/sutro-jsdoc-theme",
"tape": "^4.9.1",
"tape-watch": "^2.3.0",
"webpack": "^3.12.0"
}
}