forked from bitpay/yuidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.13 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
{
"name": "yuidocjs",
"version": "0.3.47",
"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.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": {
"jshint": "2.4.x",
"ytestrunner": "~0.3.3",
"yuitest": ">=0.7.3",
"selleck": "~0.1",
"istanbul": "~0.1.27"
},
"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"
},
"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",
"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"
}
}
}