-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 777 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 777 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
34
35
36
37
{
"name": "gulp-doctoc",
"version": "0.1.4",
"description": "Add a table of contents to a markdown file.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/will-ob/gulp-doctoc"
},
"keywords": [
"gulp",
"gulpplugin",
"doctoc"
],
"author": "Will O'Brien <will.obrien@dibit.co>",
"contributors": [{
"name": "Nikita Bystrov",
"email": "arttsesoft@gmail.com"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/will-ob/gulp-doctoc/issues"
},
"dependencies": {
"doctoc": "^1.0.0",
"gulp-util": "~2.2.14",
"through2": "~0.4.1"
},
"devDependencies": {
"mocha": "~1.18.2",
"assert": "~1.1.1",
"gulp-util": "~2.2.14"
}
}