-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "wetzel",
"version": "0.2.3",
"description": "Generate Markdown or AsciiDoctor documentation from JSON Schema",
"license": "Apache-2.0",
"author": {
"name": "Patrick Cozzi, Ed Mackey, Howard Wolosky, and other contributors",
"url": "https://twitter.com/pjcozzi"
},
"main": "index.js",
"keywords": [
"json schema",
"markdown",
"asciidoctor"
],
"homepage": "https://github.com/CesiumGS/wetzel",
"repository": {
"type": "git",
"url": "https://github.com/CesiumGS/wetzel.git"
},
"bugs": {
"url": "https://github.com/CesiumGS/wetzel/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"dependencies": {
"jsonpointer": "^5.0.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-cesium": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"gulp": "^4.0.2",
"mocha": "^10.0.0"
},
"bin": {
"wetzel": "./bin/wetzel.js"
},
"scripts": {
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"test": "mocha",
"test-bail": "mocha -b",
"generate-third-party": "gulp generate-third-party"
}
}