-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mathml",
"version": "1.1.12",
"description": "MathML allows to load modify and render MathML input. It is based on the XML processing node module xtraverse.",
"repository": {
"url": "git+ssh://[email protected]/ag-gipp/node-mathml.git",
"type": "git"
},
"engines": {
"node": ">=6"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"clean": "rm -f app/MathML/*.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --fix './src/**/*.ts'",
"coverage": "nyc npm run test",
"test": "npm run clean && npm run build && PREQ_CONNECT_TIMEOUT=15 mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"coveralls"
]
},
"main": "app/MathML/MathMLRenderer.js",
"dependencies": {
"xpath": "0.0.32",
"xtraverse": "^0.1.0"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"coveralls": "^3.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.5",
"jquery": "^3.5.1",
"mocha": "^8.2.1",
"mocha-eslint": "^6.0.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"bugs": {
"url": "https://github.com/ag-gipp/node-mathml/issues"
},
"homepage": "https://github.com/ag-gipp/node-mathml#readme",
"directories": {
"test": "test"
},
"keywords": [
"mathml",
"math",
"xml",
"mathml3"
],
"author": "Moritz Schubotz",
"license": "Apache-2.0",
"maintainers": [],
"contributors": [
"Vincent Stange (https://github.com/vstange)",
"Thiemo Kreuz (http://software.wikimedia.de)",
"Stefan Kaufhold (https://github.com/skaufhold)",
"Stanislav Malyshev (https://github.com/smalyshev)",
"Jonas Kress (https://github.com/JonasKress)",
"Felix Brix (https://github.com/fbrix)",
"Petulant Slacker (https://github.com/LuiSlacker)",
"greenkeeper[bot] (http://github.com/apps/greenkeeper)",
"Snyk bot (http://snyk.io)",
"Michael Kramer (https://github.com/Thanathan-k)",
"Norman Meuschke (www.meuschke.org)",
"Moritz Schubotz (www.formulasearchengine.com)"
]
}