forked from yui/yuidoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 2.89 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "yuidocjs",
"version": "0.6.0",
"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.10.1",
"graceful-fs": "2.x",
"markdown-it": "^3.0.7",
"minimatch": "^2.0.1",
"rimraf": "2.x",
"yui": "^3.18.1"
},
"devDependencies": {
"istanbul": "^0.3.5",
"jshint": "^2.6.0",
"selleck": "^0.1.18",
"ytestrunner": "^0.3.3",
"yuitest": "^0.7.9"
},
"scripts": {
"pretest": "jshint ./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",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yui/yuidoc/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/yui/yuidoc.git"
},
"jshintConfig": {
"bitwise": true,
"browser": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"latedef": "nofunc",
"laxbreak": true,
"maxerr": 500,
"maxlen": 150,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"onevar": true,
"trailing": true,
"undef": true,
"unused": "vars",
"yui": true
},
"yuidoc": {
"name": "YUIDoc",
"options": {
"external": {
"data": "http://yuilibrary.com/yui/docs/api/data.json"
},
"linkNatives": "true",
"attributesEmit": "true",
"paths": [
"./lib"
],
"outdir": "./output/api"
}
}
}