forked from yui/yuidoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
{
"name": "@regru/yuidocjs",
"version": "0.9.0",
"description": "YUIDoc, YUI's JavaScript Documentation engine.",
"author": "Dav Glass <davglass@gmail.com>",
"bugs": {
"url": "http://github.com/yui/yuidoc/issues"
},
"contributors": [
"Adam Moore <amoore@gmail.com>",
"Ryan Grove <ryan@wonko.com>",
"Eric Ferraiuolo <eferraiuolo@gmail.com>",
"Felipe Gasper <felipe@cpanel.net>",
"Evan Goer <evan@goer.org>",
"Alberto Gragera <albgra@gmail.com>",
"Pat Cavit <pcavit@gmail.com>",
"Kazuhito Hokamura <k.hokamura@gmail.com>",
"prodaea <rlee@etherealnation.net>",
"Wei Wang <weiwang85@gmail.com>",
"Thomas Boyt <me@thomasboyt.com>"
],
"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": "^2.0.8",
"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": "git+ssh://git@github.com/yui/yuidoc.git"
},
"yuidoc": {
"name": "YUIDoc",
"options": {
"external": {
"data": "http://yuilibrary.com/yui/docs/api/data.json"
},
"linkNatives": "true",
"attributesEmit": "true",
"paths": [
"./lib"
],
"outdir": "./output/api"
}
},
"homepage": "https://github.com/yui/yuidoc#readme",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
}
}