-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "odata-vocabularies",
"version": "0.4.4",
"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": "https://github.com/oasis-tcs/odata-vocabularies.git"
},
"files": [
"lib/*"
],
"bin": {
"odata-vocab2md": "lib/cli.js"
},
"main": "lib/csdl2markdown.js",
"dependencies": {
"conventional-changelog-core": "^4.2.4",
"conventional-changelog-writer": "^5.0.0",
"minimist": "^1.2.0",
"odata-csdl": "^0.2.9"
},
"devDependencies": {
"c8": "^7.3.1",
"eslint": "^7.21.0",
"mocha": "^8.3.1"
},
"scripts": {
"build": "node lib/transform.js",
"changelog": "./lib/changelog.sh",
"test": "c8 -r html -r text mocha",
"watch": "mocha --watch"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md"
}