forked from runarberg/markdown-it-math
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
{
"name": "markdown-it-math-loose",
"version": "4.1.1",
"description": "Markdown-it plugin to include math in your document",
"main": "index.js",
"scripts": {
"browserify": "(echo \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\"; browserify ./ -s markdownitMath) > dist/markdown-it-math.js",
"dist": "rm -fr dist; mkdir dist; npm run browserify; npm run minify",
"minify": "uglifyjs dist/markdown-it-math.js -b beautify=false,ascii_only=true -c -m --preamble \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\" > dist/markdown-it-math.min.js",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Menci/markdown-it-math-loose"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"MathML",
"AsciiMath"
],
"author": "Menci <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Menci/markdown-it-math-loose/issues"
},
"homepage": "https://github.com/Menci/markdown-it-math-loose",
"optionalDependencies": {
"ascii2mathml": "^0.6.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-testgen": "^0.1.5",
"texzilla": "^0.9.9",
"uglify-js": "^3.4.9"
}
}