-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.3 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
{
"name": "grunt-todo",
"version": "0.5.0",
"description": "Find TODO, FIXME and NOTE inside project files",
"keywords": [
"gruntplugin",
"todo",
"find",
"fixme",
"note"
],
"homepage": "https://github.com/leny/grunt-todo",
"author": {
"name": "leny",
"email": "[email protected]",
"url": "http://leny.me"
},
"contributors": [
{
"name": "Zach Wolf",
"url": "http://zachwolf.com"
},
{
"name": "Adam",
"url": "http://quailcity.com"
},
{
"name": "Ed Wellbrook",
"url": "http://edwellbrook.com"
},
{
"name": "Daniel Furze",
"url": "http://daniel.furzeface.com"
},
{
"name": "Michael Strutt",
"url": "http://mstrutt.co.uk"
}
],
"repository": {
"type": "git",
"url": "git://github.com/leny/grunt-todo.git"
},
"bugs": {
"url": "https://github.com/leny/grunt-todo/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/leny/grunt-todo/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"chalk": "^4.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-jshint": "^2.0.0"
}
}