forked from phase2/grunt-drupal-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "grunt-drupal-tasks",
"description": "A Grunt plugin to automate Drupal build and testing tasks.",
"version": "1.0.0",
"main": "bootstrap.js",
"dependencies": {
"fs-extra": "~0.30.0",
"grunt": "^1.0.1",
"grunt-available-tasks": "~0.6.2",
"grunt-composer": "~0.4.4",
"grunt-concurrent": "^2.1.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-symlink": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-drush": "~0.0.7",
"grunt-eslint": "^19.0.0",
"grunt-force-task": "^2.0.0",
"grunt-githooks": "~0.6.0",
"grunt-log-headers": "^1.0.1",
"grunt-mkdir": "^1.0.0",
"grunt-newer": "^1.1.1",
"grunt-notify": "git+https://github.com/grayside/grunt-notify.git#d4b9adf1",
"grunt-parallel-behat": "^1.0.0",
"grunt-phpcs": "git+https://github.com/grayside/grunt-phpcs.git#0.5.0-fork2",
"grunt-phplint": "~0.0.8",
"grunt-phpmd": "~0.1.1",
"grunt-rsync": "^1.0.1",
"grunt-shell": "^1.2.1",
"grunt-staged": "~0.1.0",
"lodash": "^4.5.0",
"time-grunt": "^1.3.0"
},
"devDependencies": {
"eslint": "^3.1.0",
"eslint-config-google": "^0.6.0",
"eslint-config-xo": "^0.15.0"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"build",
"drupal",
"grunt",
"gruntplugin"
],
"bugs": "https://github.com/phase2/grunt-drupal-tasks/issues",
"homepage": "https://github.com/phase2/grunt-drupal-tasks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phase2/grunt-drupal-tasks.git"
},
"scripts": {
"test": "./test/test.sh",
"predocs": "rm -Rf build; mkdir build",
"docs": "docker-compose run docs",
"lint": "eslint ."
}
}