-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.52 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
67
68
{
"name": "grunt-drupal-bootstrap",
"description": "Plugin to help automate tasks for a Drupal Bootstrap theme.",
"version": "0.2.3",
"homepage": "https://github.com/unicorn-fail/grunt-drupal-bootstrap",
"keywords": [
"grunt",
"gruntplugin",
"drupal",
"bootstrap",
"front-end",
"theme"
],
"author": {
"name": "Mark Carver",
"url": "https://github.com/markcarver"
},
"repository": {
"type": "git",
"url": "git://github.com/unicorn-fail/grunt-drupal-bootstrap.git"
},
"bugs": {
"url": "https://github.com/unicorn-fail/grunt-drupal-bootstrap/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/unicorn-fail/grunt-drupal-bootstrap/blob/master/LICENSE"
}
],
"main": "index.js",
"files": [
"lib",
"tasks",
"index.js"
],
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"bluebird": "^3.1.1",
"bower": "^1.7.2",
"bower-endpoint-parser": "^0.2.2",
"fs-extra": "^1.0.0",
"grunt": "^1.0.0",
"grunt-promise": "^1.1.0",
"inquirer": "^1.2.2",
"underscore": "^1.8.3",
"underscore.nested": "^0.1.0"
},
"devDependencies": {
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"nodeunit": "^0.10.2"
},
"peerDependencies": {
"bluebird": "^3.1.1",
"bower": "^1.7.2",
"grunt": ">=0.4.5",
"grunt-promise": "^1.0.0",
"underscore": "^1.8.3",
"underscore.nested": "^0.1.0"
}
}