forked from gruntjs/grunt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 813 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
{
"name": "grunt-cli",
"description": "The grunt command line interface.",
"version": "0.1.13",
"author": "Grunt Team",
"homepage": "http://gruntjs.com/",
"repository": {
"type": "git",
"url": "git://github.com/gruntjs/grunt-cli.git"
},
"bugs": {
"url": "http://github.com/gruntjs/grunt-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gruntjs/grunt-cli/blob/master/LICENSE-MIT"
}
],
"bin": {
"grunt": "bin/grunt"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "node bin/grunt test"
},
"preferGlobal": true,
"dependencies": {
"nopt": "~1.0.10",
"findup-sync": "~0.1.0",
"resolve": "~0.3.1"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.2.0"
}
}