forked from brianeto/gulp-sass-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "gulp-sass-starter",
"version": "1.0.1",
"description": "A simple starter kit builded with Gulp, SASS, and js/sass lint for better coding",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "gulp sass_lint && jshint -c .jshintrc --verbose src/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianeto/gulp-sass-starter.git"
},
"author": "brianeto",
"license": "ISC",
"bugs": {
"url": "https://github.com/brianeto/gulp-sass-starter/issues"
},
"keywords": [
"Gulp",
"SASS",
"Babel",
"browser-sync",
"stylelint",
"jshint",
"Husky",
"imagemin",
"Static Pages",
"Starter kit",
"modular",
"BEM",
"SMACSS",
"OOCSS"
],
"homepage": "https://github.com/brianeto/gulp-sass-starter#readme",
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-concat": "2.6.1",
"gulp-imagemin": "^4.1.0",
"gulp-notify": "3.0.0",
"gulp-plumber": "1.1.0",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.3.4",
"gulp-stylelint": "^6.0.0",
"gulp-uglify": "^3.0.0",
"husky": "0.14.3",
"jshint-stylish": "2.2.1",
"stylelint": "^8.4.0"
},
"dependencies": {
"jshint": "^2.9.5"
}
}