-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "gulp-starter-kit",
"version": "1.1.0",
"author": "CJies Tan <[email protected]>",
"description": "Basic Gulp Starter Kit",
"main": "gulpfile.js",
"license": "MIT",
"engines": {
"node": ">=0.14.x"
},
"scripts": {
"start": "gulp dev",
"dev": "gulp dev",
"build": "gulp prod",
"prod": "gulp prod",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjies/gulp-starter-kit"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"browser-sync": "^2.11.1",
"cssnano": "^3.5.2",
"del": "^2.2.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^3.2.0",
"gulp-data": "^1.2.1",
"gulp-eslint": "^2.0.0",
"gulp-filter": "^4.0.0",
"gulp-gzip": "^1.2.0",
"gulp-header": "^1.7.1",
"gulp-htmlmin": "^1.3.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.4.0",
"gulp-jade": "^1.1.0",
"gulp-jsonminify": "^1.0.0",
"gulp-less": "^3.0.5",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.1.0",
"gulp-sass": "^2.2.0",
"gulp-sass-lint": "^1.1.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"karma": "^0.13.22",
"karma-coverage": "^0.5.5",
"karma-mocha-reporter": "^2.0.0",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"morgan": "^1.7.0",
"phantomjs-prebuilt": "^2.1.6",
"pretty-hrtime": "^1.0.2",
"run-sequence": "^1.1.5",
"sass-lint": "^1.5.1",
"shelljs": "^0.6.0",
"yargs": "^4.3.2"
}
}