-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "task-runners",
"version": "1.0.0",
"description": "",
"scripts": {
"build:gulp": "gulp",
"build:grunt": "grunt",
"build": "concurrently \"npm run build:gulp\" \"npm run build:grunt\" ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gulp",
"grunt",
"task runner"
],
"author": "AkatQuas",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:AkatQuas/task-runners.git"
},
"devDependencies": {
"concurrently": "^3.6.1",
"del": "^3.0.0",
"grunt": "^1.0.3",
"grunt-autoprefixer": "^3.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-imagemin": "^2.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-notify": "^0.4.5",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-cache": "^1.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-imagemin": "^4.1.0",
"gulp-jshint": "^2.1.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.4.0",
"gulp-ruby-sass": "^3.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
}
}