-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 1.51 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": "load-grunt-configs",
"description": "Loads grunt task configurations from separate files",
"version": "1.0.0",
"homepage": "http://creynders.github.io/load-grunt-configs/",
"author": {
"name": "Camille Reynders",
"email": "[email protected]",
"url": "www.creynders.be"
},
"repository": {
"type": "git",
"url": "git://github.com/creynders/load-grunt-configs.git"
},
"bugs": {
"url": "https://github.com/creynders/load-grunt-configs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/creynders/load-grunt-configs/blob/master/LICENSE-MIT"
}
],
"main": "lib/load-grunt-configs",
"scripts": {
"test": "grunt nodeunit",
"serve:docs": "grunt serve:docs"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"lib"
],
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-markdown": "^0.7.0",
"load-grunt-tasks": "^3.1.0",
"minimist": "^1.1.1",
"node-uuid": "~1.4.1",
"proxyquire": "^1.4.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"grunt",
"gruntfile",
"gruntplugin",
"configuration"
],
"dependencies": {
"cson-parser": "^1.0.9",
"inquirer": "^0.8.2",
"js-yaml": "^3.2.7",
"lodash": "^3.6.0",
"rimraf": "^2.3.2"
}
}