-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "json-schema-to-jsdoc",
"version": "1.1.1",
"description": "JSON Schema to JSDoc generator",
"main": "index.js",
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "jest --coverage",
"example": "node example.js",
"postexample": "jsdoc docs.js"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"keywords": [
"JSON",
"schema",
"jsdoc",
"jsonschema",
"generator"
],
"author": "Francis Nepomuceno",
"contributors": [
"Brett Zamir"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/n3ps/json-schema-to-jsdoc.git"
},
"bugs": "https://github.com/n3ps/json-schema-to-jsdoc/issues",
"homepage": "https://github.com/n3ps/json-schema-to-jsdoc",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"json-pointer": "^0.6.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
}
}