-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
37 lines (37 loc) · 911 Bytes
/
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
{
"name": "asciimath2tex",
"version": "1.5.1",
"description": "Library to convert AsciiMath to TeX",
"source": "asciimath2tex.js",
"main": "dist/asciimath2tex.js",
"module": "dist/asciimath2tex.mjs",
"unpkg": "dist/asciimath2tex.umd.js",
"types": "dist/asciimath2tex.d.ts",
"amdName": "AsciiMathParser",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "microbundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christianp/asciimath2tex.git"
},
"keywords": [
"latex",
"asciimath",
"tex",
"math"
],
"author": "Christian Lawson-Perfect",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/christianp/asciimath2tex/issues"
},
"homepage": "https://github.com/christianp/asciimath2tex#readme",
"devDependencies": {
"microbundle": "^0.14.2"
}
}