-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
{
"name": "markdown-it-synapse-math",
"version": "3.0.4",
"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-synapse-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-synapse-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-synapse-math.min.js",
"prepublish": "npm run dist",
"pretest": "npm run lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/Njanderson/markdown-it-synapse-math"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"MathML",
"AsciiMath"
],
"author": "Rúnar Berg Baugsson Sigríðarson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Njanderson/markdown-it-synapse-math/issues"
},
"homepage": "https://github.com/Njanderson/markdown-it-synapse-math",
"optionalDependencies": {
"ascii2mathml": "^0.5.3"
},
"devDependencies": {
"babelify": "^6.3.0",
"browserify": "^11.1.0",
"eslint": "^1.4.3",
"markdown-it": "^4.1.0",
"markdown-it-testgen": "^0.1.4",
"mocha": "^2.3.2",
"texzilla": "^0.9.9",
"uglifyjs": "^2.4.10"
}
}