forked from koistya/gulp-csscomb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 965 Bytes
/
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
{
"name": "gulp-csscomb",
"description": "CSScomb is a coding style formatter for CSS.",
"version": "3.0.3",
"homepage": "http://github.com/koistya/gulp-csscomb",
"repository": {
"type": "git",
"url": "http://github.com/koistya/gulp-csscomb.git"
},
"bugs": {
"url": "https://github.com/koistya/gulp-csscomb/issues"
},
"author": "Konstantin Tarkus (@koistya)",
"licenses": {
"type": "MIT",
"url": "https://github.com/koistya/gulp-csscomb/raw/master/LICENSE.txt"
},
"keywords": [
"gulpplugin",
"css",
"csscomb",
"lint",
"linter",
"preprocessor"
],
"main": "./index.js",
"dependencies": {
"csscomb": "git+https://github.com/AanZee/csscomb.js.git",
"gulp-util": "^3.0.1",
"through2": "^0.6.3"
},
"devDependencies": {
"jshint": "^2.5.8",
"mocha": "^2.0.1"
},
"engines": {
"node": ">= 0.9.0"
},
"scripts": {
"test": "jshint index.js test.js && mocha"
}
}