-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "mathml2omml",
"version": "0.4.0",
"description": "a MathML to OMML converter ",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "eslint src/",
"transpile": "rollup -c",
"prepublishOnly": "npm run lint && npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiduswriter/mathml2omml.git"
},
"keywords": [
"mml",
"mathml",
"omml"
],
"author": "Johannes Wilm",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fiduswriter/mathml2omml/issues"
},
"homepage": "https://github.com/fiduswriter/mathml2omml#readme",
"devDependencies": {
"entities": "^4.3.1",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.2",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"rollup": "^2.78.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup-plugin-terser": "^7.0.2",
"xml-formatter": "^2.6.1"
}
}