forked from yui/yuidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (118 loc) · 2.55 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
113
114
115
116
117
118
119
120
{
"name": "yuidoc-iq",
"version": "0.1.4",
"description": "Custom version of YuiDOC. Added extra syntax type, and adjusted builder to pass category with classes",
"author": "rdewit",
"bugs": {
"url": "https://github.com/marviq/yuidoc-iq"
},
"contributors": [
{
"name": "Adam Moore",
"email": "amoore@gmail.com"
},
{
"name": "Ryan Grove",
"email": "ryan@wonko.com"
},
{
"name": "Eric Ferraiuolo",
"email": "eferraiuolo@gmail.com"
},
{
"name": "Felipe Gasper",
"email": "felipe@cpanel.net"
},
{
"name": "Evan Goer",
"email": "evan@goer.org"
},
{
"name": "Alberto Gragera",
"email": "albgra@gmail.com"
},
{
"name": "Pat Cavit",
"email": "pcavit@gmail.com"
},
{
"name": "Kazuhito Hokamura",
"email": "k.hokamura@gmail.com"
},
{
"name": "prodaea",
"email": "rlee@etherealnation.net"
},
{
"name": "Wei Wang",
"email": "weiwang85@gmail.com"
},
{
"name": "Thomas Boyt",
"email": "me@thomasboyt.com"
}
],
"engines": {
"node": ">=0.4.0"
},
"keywords": [
"yui",
"jsdoc",
"coffeescript",
"api",
"documentation",
"javadoc",
"docs",
"apidocs"
],
"main": "./lib/index",
"bin": {
"yuidoc": "./lib/cli.js"
},
"dependencies": {
"yui": "3.9.1",
"rimraf": "~2.0.0",
"marked": "~0.2.8",
"minimatch": "~0.2.11",
"graceful-fs": ">=1.1.1",
"express": "~3.1.2"
},
"devDependencies": {
"ytestrunner": "~0.3.3",
"yuitest": ">=0.7.3",
"selleck": "~0.1",
"istanbul": "~0.1.27"
},
"scripts": {
"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"
},
"preferGlobal": "true",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yui/yuidoc/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/marviq/yuidoc-iq.git"
},
"publishConfig": {
"registry": "http://npm.marviq.net:5984/registry/_design/app/_rewrite"
},
"yuidoc": {
"name": "YUIDoc",
"logo": "http://yuilibrary.com/img/yui-logo.png",
"options": {
"external": {
"data": "http://yuilibrary.com/yui/docs/api/data.json"
},
"linkNatives": "true",
"attributesEmit": "true",
"paths": [
"./lib"
],
"outdir": "./output/api"
}
}
}