forked from wvbe/docxml
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
58 lines (58 loc) · 1.63 KB
/
deno.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
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
56
57
58
{
"name": "@fontoxml/docxml",
"version": "5.23.0",
"description": "Create, modify, and parse Microsoft Word (.docx) documents programmatically. Build documents from scratch or use existing templates. Supports vanilla JavaScript and JSX syntax with full TypeScript support.",
"license": "MIT",
"author": "FontoXML",
"keywords": [
"docx",
"word",
"document",
"markup",
"office",
"microsoft-word",
"template"
],
"homepage": "https://jsr.io/@fontoxml/docxml",
"repository": {
"type": "git",
"url": "https://github.com/fontoxml/docxml"
},
"bugs": "https://github.com/fontoxml/docxml/issues",
"exports": "./mod.ts",
"publish": {
"exclude": [
".github/",
".vscode/",
".npmrc",
"deno.lock",
"assets/",
"coverage/",
"docs/",
"eslint.config.mjs",
"examples/",
"playground/",
".prettierrc.json",
"inspect.ts",
"lib/utilities/src/tests.ts",
"**/*.test.ts",
"**/*.test.tsx",
"**/test/**",
"**/__tests__/**"
]
},
"compilerOptions": {
"strict": true,
"lib": ["deno.ns", "dom", "dom.iterable"],
"useUnknownInCatchVariables": true,
"noImplicitAny": true
},
"importMap": "imports.json",
"tasks": {
"check": "deno check .",
"lint": "deno lint",
"test": "deno task lint && deno task check && deno test -A lib",
"test:coverage": "deno task test --coverage=coverage && deno coverage --exclude='utils/xml-validation/fontoxml' --exclude='vendor' --lcov --output=coverage/cov.lcov coverage && genhtml --ignore-errors inconsistent --output-directory ./coverage/html_cov ./coverage/cov.lcov && open ./coverage/html_cov/index.html",
"precommit": "deno task lint && deno task test"
}
}