-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
124 lines (124 loc) · 2.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"devDependencies": {
"@accordproject/concerto-core": "3.19.8",
"dayjs": "1.11.13",
"glob": "^7.1.7",
"handlebars": "^4.7.8",
"license-check-and-add": "2.3.6",
"mkdirp": "3.0.1",
"nyc": "17.1.0",
"semver": "^7.6.3",
"traverse": "^0.6.10"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"workspaces": [
"./packages/*"
],
"name": "markdown-transform",
"description": "A framework for transforming markdown",
"version": "0.16.25",
"private": true,
"scripts": {
"dingus": "npm run --workspace dingus",
"build": "npm run build --workspaces --if-present",
"postinstall": "npm run models:get",
"models:get": "node ./scripts/external/getExternalModels.js",
"models:clean": "node ./scripts/external/cleanExternalModels.js",
"coverage": "node ./scripts/coverage.js \"packages/markdown-*\" && nyc report -t coverage --cwd . --report-dir coverage --reporter=lcov && cat ./coverage/lcov.info",
"pretest": "npm run licchk",
"test": "npm run test:cov --workspaces",
"licchk": "license-check-and-add"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/markdown-transform.git"
},
"keywords": [
"accord",
"markdown",
"commonmark",
"docx",
"pdf"
],
"author": "accordproject.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/accordproject/markdown-transform/issues"
},
"license-check-and-add-config": {
"folder": ".",
"license": "HEADER",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git",
".github",
"node_modules",
"packages",
"softhsm",
"build.cfg",
"README.md",
"CONTRIBUTING.md",
"DEVELOPERS.md",
"NOTICES.md",
"CHARTER.md",
"LICENSE",
"HEADER",
"docs/",
"scripts/",
"coverage",
".gitignore",
".DS_Store",
"architecture.puml"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".log",
".enc",
".xmind",
".deb",
".vo",
".glob",
".aux",
".v.d",
".ctoj",
".depends",
".annot",
".byte",
".cmi",
".cmo",
".tem",
".txt",
".config",
".coq_modules"
],
"insert_license": false,
"license_formats": {
"js|ergo|cto": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"v|atd|mll|mly": {
"prepend": "*",
"append": " *)",
"eachLine": {
"prepend": " * "
}
},
"gitattributes|cfg|ocp-indent": {
"eachLine": {
"prepend": "# "
}
},
"md": {
"file": "HEADER"
}
}
}
}