-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.15 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
55
56
57
58
59
60
61
62
{
"name": "@author.io/metadoc",
"version": "0.1.3",
"description": "Generate JSON documentation of OOP-based JavaScript libraries.",
"bin": {
"metadoc": "cli.js"
},
"main": "generator.js",
"scripts": {
"test": "tap -R spec test/*.js && standard --verbose | snazzy",
"test:debug": "tap -R spec test/*.js"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"oop",
"js",
"docs",
"metadata",
"jsdoc"
],
"author": "Corey Butler",
"license": "BSD 3-Clause",
"dependencies": {
"cherow": "1.6.9",
"comment-parser": "0.5.4",
"productionline": "1.3.12",
"traverse": "0.6.6"
},
"devDependencies": {
"snazzy": "8.0.0",
"standard": "12.0.1",
"tap": "^14.2.0"
},
"standard": {
"ignore": [
"_*",
"_**/*",
"test/**/*",
"node_modules",
"build.js"
],
"globals": [
"window",
"global",
"MutationObserver",
"DOMParser",
"XMLHttpRequest",
"FormData",
"btoa",
"localStorage",
"fetch",
"Element",
"HTMLElement",
"NodeFilter",
"BUS",
"DOC",
"LAST_ENTITY"
]
}
}