-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 837 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
{
"name": "gulp-todoist",
"version": "0.0.2",
"description": "Outputs a report with total of TODOs and FIXMEs in your file/s",
"license": "MIT",
"repository": "oitozero/gulp-todoist",
"author": {
"name": "Pedro Sampaio",
"email": "[email protected]",
"url": "https://github.com/oitozero"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"gulp",
"gulp-todo",
"todo",
"fixme",
"leasot"
],
"dependencies": {
"gulp-util": "^3.0.1",
"leasot": "^2.0.0",
"lodash.countby": "^3.0.0",
"lodash.defaults": "^3.0.0",
"lodash.omit": "^3.0.0",
"lodash.padright": "^3.0.0",
"through2": "^0.6.3"
},
"devDependencies": {
"gulp": "^3.8.11",
"mocha": "*"
}
}