-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.58 KB
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": "mathml2latex",
"version": "1.1.3",
"description": "Convert mathml to latex.",
"author": "Mika",
"license": "MIT",
"keywords": [
"converter",
"mathml",
"latex"
],
"homepage": "https://github.com/mika-cn/mathml2latex",
"repository": {
"type": "git",
"url": "https://github.com/mika-cn/mathml2latex.git"
},
"bugs": {
"url": "https://github.com/mika-cn/mathml2latex/issues"
},
"main": "lib/mathml2latex.cjs.js",
"module": "lib/mathml2latex.es.js",
"browser": {
"domino": false,
"./lib/mathml2latex.cjs.js": "./lib/mathml2latex.browser.cjs.js",
"./lib/mathml2latex.es.js": "./lib/mathml2latex.browser.es.js",
"./lib/mathml2latex.umd.js": "./lib/mathml2latex.browser.umd.js"
},
"dependencies": {
"domino": "^2.1.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"rollup": "^2.52.3",
"tape": "^4.11.0"
},
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run build-cjs && npm run build-es && npm run build-umd && npm run build-iife",
"build-cjs": "rollup -c config/rollup.config.cjs.js && rollup -c config/rollup.config.browser.cjs.js",
"build-es": "rollup -c config/rollup.config.es.js && rollup -c config/rollup.config.browser.es.js",
"build-umd": "rollup -c config/rollup.config.umd.js && rollup -c config/rollup.config.browser.umd.js",
"build-iife": "rollup -c config/rollup.config.iife.js",
"test": "rollup -c config/rollup.config.cjs.js && tape test/test-*.js"
}
}