forked from documentationjs/gulp-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 737 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 737 Bytes
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
{
"name": "gulp-documentation",
"description": "documentation plugin for gulp",
"version": "3.0.0",
"author": "Tom MacWright",
"dependencies": {
"documentation": "4.0.0-beta13",
"through2": "^2.0.1",
"vinyl": "^2.0.0"
},
"devDependencies": {
"concat-stream": "^1.4.8",
"eslint": "^3.9.1",
"gulp": "^3.8.11",
"tap": "8.0.0"
},
"keywords": [
"documentation",
"gulp",
"gulpplugin",
"jsdoc"
],
"license": "BSD-2-Clause",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:documentationjs/gulp-documentation.git"
},
"scripts": {
"test": "eslint . && tap test/test.js",
"docs": "documentation readme index.js --section=API"
}
}