-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
51 lines (51 loc) · 1.12 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": "texme",
"version": "1.2.2",
"description": "Self-rendering Markdown + LaTeX documents",
"main": "texme.js",
"files": [
"texme.js",
"texme.min.js"
],
"keywords": [
"markdown",
"commonmark",
"tex",
"latex",
"browser",
"node"
],
"homepage": "https://github.com/susam/texme",
"bugs": "https://github.com/susam/texme/issues",
"license": "MIT",
"author": "Susam Pal <[email protected]> (http://susam.in/)",
"repository": "github:susam/texme",
"dependencies": {
"marked": "4.0.12"
},
"devDependencies": {
"coveralls": "latest",
"jsdoc": "latest",
"jsdom": "latest",
"mocha": "latest",
"nyc": "latest",
"sinon": "latest",
"standard": "latest",
"uglify-js": "latest"
},
"scripts": {
"test": "standard && mocha",
"coverage": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"min": "uglifyjs texme.js --compress --mangle --output texme.min.js",
"doc": "jsdoc -c jsdoc.json"
},
"standard": {
"env": [
"mocha"
],
"global": [
"MathJax"
]
}
}