-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "xml-to-pdf",
"version": "1.5.0",
"description": "PDF generation from XML to a stream, buffer, or file",
"main": "lib/generate.js",
"scripts": {
"test": "run-s test:lint test:unit test:cover test:cover-check && npm audit --production",
"test:lint": "eslint .",
"test:unit": "mocha test/unit --recursive --require test/unit/helper",
"test:cover": "nyc --reporter=lcov --reporter=text-summary _mocha -- -R dot test/unit --recursive --require test/unit/helper",
"test:cover-check": "nyc check-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/HMPO/xml-to-pdf.git"
},
"author": "HMPO",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/HMPO/xml-to-pdf/issues"
},
"homepage": "https://github.com/HMPO/xml-to-pdf",
"dependencies": {
"concat-stream": "^2.0.0",
"debug": "^4.3.4",
"deep-clone-merge": "^1.5.5",
"pdfkit": "^0.16.0",
"underscore": "^1.13.6",
"xml2js": "^0.5.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.39.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0"
},
"nyc": {
"all": true,
"exclude": [
"coverage/**",
"bin/**",
"test/**"
],
"statements": 92,
"branches": 84,
"functions": 98,
"lines": 94
}
}