-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "mathjax-electron",
"version": "3.0.0",
"description": "A trimmed down version of the MathJax library for use with Electron and modern browsers",
"main": "index.js",
"scripts": {
"mathjax:clean": "rm -r MathJax-2.7.5 | true",
"mathjax:download": "npm run mathjax:clean && curl -L https://github.com/mathjax/MathJax/archive/2.7.5.tar.gz | tar xz",
"mathjax:prune": "grunt nteract",
"test": "electron-mocha --renderer test/load.test.js && electron-mocha --renderer test/load-and-typeset.test.js",
"semantic-release": "semantic-release"
},
"files": [
"index.js",
"MathJax-2.7.5/"
],
"repository": {
"type": "git",
"url": "git://github.com/nteract/mathjax-electron.git"
},
"keywords": [
"mathjax",
"math",
"latex",
"tex",
"electron",
"chrome",
"essential"
],
"author": "Lukas Geiger",
"license": "MIT",
"bugs": {
"url": "https://github.com/nteract/mathjax-electron/issues"
},
"devDependencies": {
"@semantic-release/npm": "^7.1.3",
"conventional-changelog-conventionalcommits": "^4.6.0",
"electron": "^3.0.4",
"electron-mocha": "^6.0.4",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-regex-replace": "^0.4.0",
"semantic-release": "^17.4.3",
"snap-shot": "^2.17.0"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}