forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.14 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mathlive",
"version": "0.26.0",
"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",
"scripts": {
"preclean": "echo '\\033[0;32mClean...\\033[0m'",
"clean": "rimraf build dist docs",
"build-js": "echo '\\033[0;32mESLint...\\033[0m' && eslint src/ -c .eslintrc.json",
"watch-js": "esw -w src/",
"build-css": "echo '\\033[0;32mCompile .less...\\033[0m' && lessc css/mathlive.core.less build/mathlive.core.css && lessc css/mathlive.less build/mathlive.css && postcss build/*.css -d dist",
"watch-css": "chokidar 'css/*.less' -c 'npm run build-css -s'",
"build": "npm-run-all -p build-css build-js docs",
"watch": "npm-run-all -p watch-css watch-js watch-docs watch-test",
"start": "npm run watch",
"dev": "npm run watch -s",
"lint": "eslint src/ -c",
"test": "tape -r @babel/register test/*",
"watch-test": "chokidar src/*.js -c 'npm run test -s' ",
"coverage": "nyc node ./test/test.js && nyc report",
"prepare": "npm run dist",
"predocs": "echo '\\033[0;32mBuild docs...\\033[0m'",
"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'",
"prerollup": "echo '\\033[0;32mRollup...\\033[0m'",
"rollup": "rollup --config",
"dist": "npm run clean -s && npm run build -s && postcss build/*.css -d dist && npm run -s rollup && cpx \"src/**\" dist/src"
},
"nyc": {
"exclude": [
"test",
"**/debug.js",
"dist",
"build"
],
"report-dir": "./build/coverage",
"reporter": "html"
},
"engines": {
"npm": ">=6.7",
"node": ">=11.9"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
],
"author": "Arno Gourdol <[email protected]>",
"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.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.7",
"chokidar-cli": "^1.2.1",
"cpx": "latest",
"cssnano": "^4.1.8",
"eslint": "^5.13.0",
"eslint-watch": "^4.0.2",
"jsdoc": "^3.5.5",
"less": "^3.9.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"postcss-cli": "^6.1.1",
"rimraf": "^2.6.3",
"rollup": "^1.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-terser": "^4.0",
"sutro-jsdoc-theme": "^1.0",
"tape": "^4.9.2"
},
"dependencies": {}
}