-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1002 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1002 Bytes
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
{
"name": "docmake",
"description": "document templating language library for javascript",
"version": "0.0.2",
"author": "Alexandre Tiertant <a.tiertant@atlantis-software.net>",
"license": "MIT",
"main": "./lib/document.js",
"repository": "https://github.com/Atlantis-Software/docmake",
"homepage": "https://github.com/Atlantis-Software/docmake",
"keywords": [
"template",
"pdf",
"pcl",
"document"
],
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"dependencies": {
"asynk": "~0.0.12",
"css": "~3.0.0",
"jsbarcode": "~3.11.4",
"lodash": "4.17.21",
"mathjs": "~9.3.2",
"pclkit": "~0.0.6",
"pdfkit": "~0.12.0",
"qr-image": "~3.2.0",
"xmldom": "~0.6.0"
},
"devDependencies": {
"coveralls": "~3.0.2",
"eslint": "^6.8.0",
"istanbul": "0.4.5",
"mocha": "~5.2.0",
"nyc": "~13.2.0"
},
"engines": {
"node": ">= 6"
}
}