-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "grunt-generate-configs",
"description": "CLI to generate separate grunt configuration files automatically",
"version": "0.6.1",
"homepage": "https://github.com/creynders/grunt-generate-configs",
"preferGlobal": true,
"author": {
"name": "Camille Reynders",
"email": "[email protected]",
"url": "http://www.creynders.be"
},
"repository": {
"type": "git",
"url": "git://github.com/creynders/grunt-generate-configs"
},
"bugs": {
"url": "https://github.com/creynders/grunt-generate-configs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/creynders/grunt-generate-configs/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"inquirer": "^0.4.1",
"js-yaml": "^3.0.2",
"js2coffee": "^2.0.3",
"rimraf": "^2.2.8",
"js-beautify": "^1.5.4"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt": "~0.4.2",
"grunt-markdown": "~0.5.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-connect": "~0.6.0",
"glob": "~3.2.8",
"lodash": "~2.4.1",
"minimist": "0.0.7",
"load-grunt-configs": "^0.4.0",
"jit-grunt": "^0.5.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"grunt",
"gruntfile",
"gruntplugin",
"configuration"
],
"bin": {
"generate_configs": "./bin/generate_configs"
},
"main": "index.js"
}