-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
155 lines (155 loc) · 3.04 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "firedoc",
"version": "1.13.18",
"author": "Yorkie <[email protected]>",
"bugs": {
"url": "http://github.com/fireball-x/firedoc/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]"
},
{
"name": "Yorkie Liu",
"email": "[email protected]"
},
{
"name": "Nan Wang",
"email": "[email protected]"
}
],
"engines": {
"node": ">=0.12.0"
},
"keywords": [
"jsdoc",
"api",
"documentation",
"javadoc",
"docs",
"apidocs"
],
"main": "./lib/firedoc",
"bin": {
"firedoc": "./bin/firedoc.js"
},
"dependencies": {
"bluebird": "^2.9.30",
"commander": "^2.8.1",
"debug": "^2.2.0",
"express": "^4.12.3",
"fs-extra": "^6.0.0",
"glob": "^5.0.10",
"graceful-fs": "*",
"handlebars": "4.0.5",
"markdown-it": "^4.2.2",
"minimatch": "^2.0.1",
"mkdirp": "^0.5.1",
"needle": "^0.9.2",
"readdirp": "^1.3.0",
"rimraf": "2.x",
"rmdir": "^1.1.0",
"semver": "^4.3.6",
"serve": ">=7.1.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"istanbul": "^0.3.16",
"jshint": "^2.6.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4"
},
"scripts": {
"docs": "make docs",
"test": "make test.nocoverage",
"build-api": "node ./bin/firedoc.js build -M --lang zh",
"build-api-en": "node ./bin/firedoc.js build -M --lang en"
},
"preferGlobal": "true",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/fireball-x/firedoc/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/fireball-x/firedoc.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
},
"firedoc": {
"linkNatives": true,
"attributesEmit": true,
"paths": [
"./lib"
],
"dest": "./docs"
},
"firedoc.test": {
"paths": [
"./test/targets"
],
"dest": "./out"
}
}