-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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": "@amermathsoc/texml-to-html",
"version": "18.1.0",
"type": "module",
"description": "A NodeJS library for converting AMS-style JATS XML to HTML",
"scripts": {
"coverage": "c8 npm run test && c8 report --reporter html",
"release": "commit-and-tag-version",
"texmlTests": "rm ./test/snapshots/texml-tests/* && cp ../texml/tests/*.xml ./test/snapshots/texml-tests/.",
"pretest": "node ./test/snapshots/updateTexmlSnapshots.js",
"test": "tape test/*.js"
},
"main": "./texml-to-html.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AmerMathSoc/texml-to-html.git"
},
"contributors": [
{
"name": "David Jones",
"email": "[email protected]"
},
{
"name": "Peter Krautzberger",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AmerMathSoc/texml-to-html/issues"
},
"homepage": "https://github.com/AmerMathSoc/texml-to-html#readme",
"devDependencies": {
"c8": "8.0.1",
"commit-and-tag-version": "12.4.1",
"tape": "5.7.2"
},
"dependencies": {
"linkedom": "0.16.4"
}
}