-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "commonform-docx",
"description": "render Common Forms in Office Open XML (Microsoft Word .docx format)",
"version": "9.3.0",
"author": "Kyle E. Mitchell <[email protected]> (http://kemitchell.com)",
"bin": "bin.js",
"dependencies": {
"@kemitchell/docopt": "^1.0.0",
"agreement-schedules-exhibits-numbering": "^3.0.0",
"commonform-flatten": "^3.0.0",
"commonform-hash": "^1.0.0",
"commonform-prepare-blanks": "^1.0.1",
"commonform-smartify": "^1.0.1",
"decimal-numbering": "^4.0.0",
"has": "^1.0.3",
"jszip": "^3.2.1",
"number-to-words-en": "^1.2.5",
"ooxml-signature-pages": "^3.0.2",
"outline-numbering": "^3.0.0",
"plan-addenda-exhibits-numbering": "^3.0.0",
"resolutions-schedules-exhibits-numbering": "^2.0.0"
},
"devDependencies": {
"istanbul": "^0.4.0",
"run-series": "^1.1.8",
"standard": "^17.0.0",
"tape": "^5.0.1",
"textract": "^2.5.0"
},
"keywords": [
"Microsoft Office",
"Microsoft Word",
"Office Open XML",
"contracts",
"document assembly",
"docx",
"knowledge management",
"law"
],
"license": "BlueOak-1.0.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",
"prepublishOnly": "node build/scaffold.js data/scaffold.docx > data/scaffold.json",
"pretest": "npm run prepublishOnly",
"test": "tape test.js"
}
}