-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
112 lines (112 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "yuidocjs",
"version": "0.10.3",
"description": "YUIDoc, YUI's JavaScript Documentation engine.",
"author": "Dav Glass <[email protected]>",
"bugs": {
"url": "http://github.com/yui/yuidoc/issues"
},
"contributors": [
{
"name": "Adam Moore",
"email": "[email protected]"
},
{
"name": "Ryan Grove",
"email": "[email protected]"
},
{
"name": "Eric Ferraiuolo",
"email": "[email protected]"
},
{
"name": "Felipe Gasper",
"email": "[email protected]"
},
{
"name": "Evan Goer",
"email": "[email protected]"
},
{
"name": "Alberto Gragera",
"email": "[email protected]"
},
{
"name": "Pat Cavit",
"email": "[email protected]"
},
{
"name": "Kazuhito Hokamura",
"email": "[email protected]"
},
{
"name": "prodaea",
"email": "[email protected]"
},
{
"name": "Wei Wang",
"email": "[email protected]"
},
{
"name": "Thomas Boyt",
"email": "[email protected]"
}
],
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"yui",
"jsdoc",
"coffeescript",
"api",
"documentation",
"javadoc",
"docs",
"apidocs"
],
"main": "./lib/index",
"bin": {
"yuidoc": "./lib/cli.js"
},
"dependencies": {
"express": "^4.13.1",
"graceful-fs": "^4.1.2",
"markdown-it": "^4.3.0",
"mdn-links": "^0.1.0",
"minimatch": "^3.0.2",
"rimraf": "^2.4.1",
"yui": "^3.18.1"
},
"devDependencies": {
"eslint": "^1.10.3",
"istanbul": "^0.3.16",
"selleck": "^0.1.18",
"ytestrunner": "^0.3.3",
"yuitest": "^0.7.9"
},
"scripts": {
"pretest": "eslint lib/*.js tests/*.js",
"test": "istanbul cover --print=both --yui ytestrunner -- --include ./tests/options.js --include ./tests/builder.js --include ./tests/parser.js --include ./tests/parser_coffee.js --include ./tests/files.js --include ./tests/utils.js --include ./tests/preprocessor.js"
},
"preferGlobal": "true",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/yui/yuidoc.git"
},
"yuidoc": {
"name": "YUIDoc",
"options": {
"external": {
"data": "https://yuilibrary.com/yui/docs/api/data.json"
},
"linkNatives": "true",
"attributesEmit": "true",
"paths": [
"./lib"
],
"outdir": "./output/api"
}
}
}