Projet

Général

Profil

Paste
Télécharger (1,84 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / package.json @ 7547bb19

1
{
2
  "name": "drupal-bootstrap",
3
  "version": "7.3.0-dev",
4
  "private": true,
5
  "devDependencies": {
6
    "bower": "~1.3.0",
7
    "glob": "^5.0.14",
8
    "grunt": "^0.4.5",
9
    "grunt-contrib-clean": "^0.6.0",
10
    "grunt-contrib-csslint": "^2.0.0",
11
    "grunt-contrib-watch": "^0.6.1",
12
    "grunt-githooks": "^0.3.1",
13
    "inquirer": "^0.9.0",
14
    "less": "^2.5.1",
15
    "less-plugin-autoprefix": "^1.4.2",
16
    "less-plugin-clean-css": "^1.5.1",
17
    "load-grunt-config": "^0.17.2",
18
    "queue": "^3.1.0",
19
    "request": "^2.60.0",
20
    "sync-exec": "^0.6.1",
21
    "time-grunt": "^1.2.1"
22
  },
23
  "scripts": {
24
    "postinstall": "grunt install"
25
  },
26
  "caches": {
27
    "libraries": ".libraries"
28
  },
29
  "paths": {
30
    "css": "css",
31
    "js": "js",
32
    "libraries": "lib"
33
  },
34
  "urls": {
35
    "jsdelivr": "https://api.jsdelivr.com/v1/bootstrap/libraries"
36
  },
37
  "githooks": {
38
    "post-checkout": [
39
      {
40
        "files": [
41
          "package.json",
42
          "Gruntfile.js",
43
          ".githooks.js.hbs",
44
          "grunt/**/*"
45
        ],
46
        "commands": "npm install",
47
        "matchAll": false
48
      }
49
    ],
50
    "post-merge": [
51
      {
52
        "files": [
53
          "package.json",
54
          "Gruntfile.js",
55
          ".githooks.js.hbs",
56
          "grunt/**/*"
57
        ],
58
        "commands": "npm install",
59
        "matchAll": false
60
      }
61
    ],
62
    "pre-commit": [
63
      {
64
        "files": "starterkits/less/less/**/*.less",
65
        "commands": [
66
          "grunt compile"
67
        ],
68
        "matchAll": false,
69
        "staged": true
70
      }
71
    ],
72
    "post-commit": [
73
      {
74
        "files": "css/**/*.css",
75
        "commands": [
76
          "git add css/**/*.css",
77
          "git commit -m \"Automated commit: grunt compile (CSS)\n\n$(git log -1 --pretty=%B)\" --author=\"$(git config user.name) <$(git config user.email)>\""
78
        ],
79
        "matchAll": false
80
      }
81
    ]
82
  }
83
}