-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.14 KB
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
{
"name": "jsdoc-to-json-schema",
"version": "0.1.9",
"description": "Generate JSON schemas from JavaScript code comments using a new jsDoc @schema tag.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node --verbose --junitreport test"
},
"repository": {
"type": "git",
"url": "git://github.com/john-doherty/jsdoc-to-json-schema.git"
},
"keywords": [
"jsdoc",
"json",
"docs",
"schema",
"json schema",
"json-schema",
"schema",
"comments"
],
"author": "John Doherty <contact@johndoherty.info> (www.johndoherty.info)",
"license": "ISC",
"bugs": {
"url": "https://github.com/john-doherty/jsdoc-to-json-schema/issues"
},
"homepage": "https://github.com/john-doherty/jsdoc-to-json-schema#readme",
"dependencies": {
"commander": "^2.9.0",
"fs-extra-promise": "^0.3.1",
"jsdoc-parse": "^1.2.7",
"stream-to-string": "^1.0.1",
"string-to-stream": "^1.1.0"
},
"devDependencies": {
"express": "^4.13.4",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"jasmine-node": "^1.14.5"
}
}