-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
45 lines (45 loc) · 909 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
43
44
45
{
"name": "generator-gruntfile",
"version": "0.1.4",
"description": "A gruntfile generator for Yeoman",
"keywords": [
"yeoman-generator",
"scaffold",
"grunt",
"gruntfile",
"build",
"task",
"runner"
],
"homepage": "https://github.com/yeoman/generator-gruntfile",
"bugs": "https://github.com/yeoman/generator-gruntfile/issues",
"author": {
"name": "Addy Osmani",
"email": "[email protected]",
"url": "https://github.com/addyosmani"
},
"main": "app/index.js",
"files": [
"app"
],
"repository": "yeoman/generator-gruntfile",
"scripts": {
"test": "mocha --reporter spec"
},
"dependencies": {
"grunt": "~0.4.1",
"underscore.string": "^3.0.3",
"yeoman-generator": "~0.16.0"
},
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "MIT"
}
]
}