-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.6 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
{
"name": "markdown-it-math",
"version": "4.1.1",
"description": "Markdown-it plugin to include math in your document",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"browserify": "(echo \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\"; browserify ./ -s markdownitMath) > dist/markdown-it-math.js",
"predist": "npm run test",
"dist": "rm -fr dist; mkdir dist; npm run browserify; npm run minify",
"lint": "eslint index.js lib/",
"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",
"pretest": "npm run lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/runarberg/markdown-it-math"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"MathML",
"AsciiMath"
],
"author": "Rúnar Berg Baugsson Sigríðarson",
"license": "MIT",
"bugs": {
"url": "https://github.com/runarberg/markdown-it-math/issues"
},
"homepage": "https://github.com/runarberg/markdown-it-math",
"optionalDependencies": {
"ascii2mathml": "^0.6.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"eslint": "^5.14.1",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-testgen": "^0.1.5",
"mocha": "^6.0.2",
"texzilla": "^0.9.9",
"uglify-js": "^3.4.9"
}
}