-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "odata-vocabularies",
"version": "0.5.2",
"description": "Convert OData vocabularies in CSDL XML or CSDL JSON to GitHub Flavored Markdown",
"homepage": "https://github.com/oasis-tcs/odata-vocabularies/blob/main/lib/README.md",
"bugs": "https://github.com/oasis-tcs/odata-vocabularies/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/oasis-tcs/odata-vocabularies.git"
},
"files": [
"lib/*",
"assets/*"
],
"bin": {
"odata-vocab2md": "lib/cli.js"
},
"exports": {
".": "./lib/csdl2markdown.js",
"./pandoc": "./lib/pandoc.js",
"./pages": "./lib/pages.js",
"./serve-pages": "./lib/serve-pages.js",
"./template": "./assets/template.html"
},
"dependencies": {
"colors": "^1.4.0",
"odata-csdl": "^0.9.5",
"pandoc-filter": "^2.2.0"
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^8.56.0",
"express": "^4.21.1",
"mocha": "^10.1.0"
},
"scripts": {
"build": "node lib/transform.js",
"pages": "node lib/pages.js \"OASIS OData TC\"",
"serve-pages": "node lib/serve-pages.js",
"test": "c8 -r html -r text mocha",
"watch": "mocha --watch"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md"
}