-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 1.83 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "drupal-bootstrap",
"version": "8.3.0-dev",
"private": true,
"devDependencies": {
"bower": "^1.8.2",
"glob": "^7.1.2",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-csslint": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-githooks": "^0.6.0",
"inquirer": "^3.3.0",
"less": "^2.7.2",
"less-plugin-autoprefix": "^1.4.2",
"less-plugin-clean-css": "^1.5.1",
"load-grunt-config": "^0.19.2",
"queue": "^4.4.1",
"request": "^2.83.0",
"sync-exec": "^0.6.1",
"time-grunt": "^1.4.0"
},
"scripts": {
"postinstall": "grunt install"
},
"caches": {
"libraries": ".libraries"
},
"paths": {
"css": "css",
"js": "js",
"libraries": "lib"
},
"urls": {
"jsdelivr": "https://api.jsdelivr.com/v1/bootstrap/libraries"
},
"githooks": {
"post-checkout": [
{
"files": [
"package.json",
"Gruntfile.js",
".githooks.js.hbs",
"grunt/**/*"
],
"commands": "yarn",
"matchAll": false
}
],
"post-merge": [
{
"files": [
"package.json",
"Gruntfile.js",
".githooks.js.hbs",
"grunt/**/*"
],
"commands": "yarn",
"matchAll": false
}
],
"pre-commit": [
{
"files": "starterkits/less/less/**/*.less",
"commands": [
"grunt compile"
],
"matchAll": false,
"staged": true
}
],
"post-commit": [
{
"files": "css/**/*.css",
"commands": [
"git add css/**/*.css",
"git commit -m \"Automated commit: grunt compile (CSS)\n\n$(git log -1 --pretty=%B)\" --author=\"$(git config user.name) <$(git config user.email)>\""
],
"matchAll": false
}
]
}
}