-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1005 Bytes
/
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
{
"name": "jsdoc-x",
"version": "4.1.0",
"description": "Parser for outputting a customized Javascript object from documented code via JSDoc's explain (-X) command. ",
"license": "MIT",
"author": "Onur Yıldırım <onur@cutepilot.com>",
"contributors": [
"Justin Beaudry <me@justinbeaudry.dev>"
],
"repository": "onury/jsdoc-x",
"main": "src/index.js",
"files": [
"src",
"LICENSE"
],
"scripts": {
"test": "node ./test"
},
"engines": {
"node": ">=8"
},
"keywords": [
"jsdoc",
"explain",
"-X",
"documentation",
"parse",
"doc"
],
"dependencies": {
"bluebird": "^3.7.2",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"jsdoc": "^3.6.3",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"tmp": "^0.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-xo": "^0.27.2",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"jsdoc-strip-async-await": "^0.1.0"
}
}