forked from tmanderson/dvi-parser
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 loc) · 817 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
{
"name": "dvi2html",
"version": "1.5.0",
"description": "Convert DVI to HTML5/CSS",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"compile": "rimraf dist && tsc",
"build": "cd tools && node tfm2json.js && node glyphs.js && cd .. && npm run compile"
},
"files": [
"dist/**/*"
],
"author": "Jim Fowler",
"license": "GPL-3.0",
"dependencies": {
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@types/node": "^10.17.13",
"babel-loader": "^8.2.2",
"eslint": "^7.23.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
}
}