forked from commonform/commonform-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "commonform-docx",
"description": "render Common Forms in Office Open XML",
"version": "1.4.0",
"author": "Kyle E. Mitchell <[email protected]> (http://kemitchell.com)",
"bin": "commonform-docx",
"dependencies": {
"@kemitchell/docopt": "^1.0.0",
"agreement-schedules-exhibits-numbering": "^1.0.0",
"commonform-flatten": "^0.8.0",
"commonform-hash": "^0.4.3",
"jszip": "^2.4.0",
"object-assign": "^4.1.1",
"ooxml-signature-pages": "^2.0.1",
"outline-numbering": "^1.0.2",
"plan-addenda-exhibits-numbering": "^2.0.0",
"resolutions-schedules-exhibits-numbering": "^0.1.0"
},
"devDependencies": {
"decimal-numbering": "^1.1.0",
"istanbul": "^0.4.0",
"standard": "^10.0.2",
"tape": "^4.2.2",
"textract": "^1.1.1"
},
"keywords": [
"Microsoft Office",
"Microsoft Word",
"Office Open XML",
"contracts",
"document assembly",
"docx",
"knowledge management",
"law"
],
"license": "Apache-2.0",
"repository": "commonform/commonform-docx",
"scripts": {
"lint": "standard",
"precoverage": "npm run pretest && istanbul cover -- tape test.js",
"coverage": "FORCE_COLOR=true istanbul check-coverage coverage/coverage.json",
"prepublish": "node build/scaffold.js data/scaffold.docx > data/scaffold.json",
"pretest": "npm run prepublish",
"test": "tape test.js"
}
}