forked from jsdoc2md/gulp-jsdoc-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 937 Bytes
/
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
{
"name": "gulp-jsdoc-to-markdown",
"author": "Lloyd Brookes <[email protected]>",
"version": "1.2.0",
"description": "gulp-jsdoc-to-markdown",
"repository": "https://github.com/jsdoc2md/gulp-jsdoc-to-markdown.git",
"main": "./lib/gulp-jsdoc-to-markdown.js",
"license": "MIT",
"keywords": [
"gulpplugin",
"jsdoc",
"markdown",
"generator",
"documentation",
"md"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "tape test/*.js",
"lint": "jshint lib/*.js test/*.js; echo",
"gulp": "gulp; echo"
},
"devDependencies": {
"del": "^1",
"event-stream": "^3.1.5",
"gulp": "^3.8.6",
"gulp-concat": "^2.4.1",
"gulp-rename": "^1.2.0",
"tape": "^4",
"vinyl": "^1.1"
},
"dependencies": {
"gulp-util": "^3.0.0",
"jsdoc-to-markdown": "^1.3.1",
"through2": "^2"
},
"standard": {
"ignore": [
"test/fixture"
]
}
}