forked from telemark/generate-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "generate-docx",
"description": "Generates .docx from template and data",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"keywords": [
"convert",
"docx",
"template",
"tfk",
"Telemark fylkeskommune"
],
"repository": {
"type": "git",
"url": "https://github.com/telemark/generate-docx.git"
},
"bugs": {
"url": "https://github.com/telemark/generate-docx/issues"
},
"homepage": "https://github.com/telemark/generate-docx",
"engines": {
"node": ">=8.0.0"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "standard && nsp check && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.0",
"nsp": "3.2.1",
"nyc": "11.4.1",
"standard": "11.0.0"
},
"dependencies": {
"docxtemplater": "3.4.2",
"jszip": "2.6.1"
}
}