-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "@paperist/remark-math",
"description": "wooorm/remark plugin for math likes LaTeX / MathJax",
"license": "MIT",
"author": "3846masa <[email protected]>",
"homepage": "https://github.com/Paperist/remark-math#readme",
"repository": "git+https://github.com/Paperist/remark-math.git",
"bugs": {
"url": "https://github.com/Paperist/remark-math/issues"
},
"version": "2.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm-run-all clean prebuild:mkdir",
"build": "npm-run-all -p build:*",
"prebuild:clean": "npm run clean",
"prebuild:mkdir": "mkdirp lib/peg",
"build:peg": "npm-run-all -p build:peg:*",
"build:peg:inlineMath": "pegjs -o ./lib/peg/inlineMath.js ./src/peg/inlineMath.pegjs",
"build:peg:math": "pegjs -o ./lib/peg/math.js ./src/peg/math.pegjs",
"build:tsc": "tsc",
"clean": "rimraf lib",
"test": "exit 0"
},
"types": "lib/index.d.ts",
"dependencies": {
"@types/mdast": "^3.0.2",
"@types/unist": "^2.0.3",
"remark-parse": "^7.0.0"
},
"devDependencies": {
"@types/node": "^12.6.8",
"@types/pegjs": "^0.10.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"pegjs": "^0.10.0",
"rimraf": "^2.6.3",
"typescript": "^3.5.3",
"unified": "^8.3.2"
},
"keywords": [
"katex",
"markdown",
"mathjax",
"remark"
]
}