-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
46 lines (46 loc) · 995 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
43
44
45
46
{
"name": "gulp-scss-lint",
"description": "Validate `.scss` files with `scss-lint`",
"version": "1.0.0",
"homepage": "http://github.com/juanfran/gulp-scss-lint",
"repository": "git://github.com/juanfran/gulp-scss-lint.git",
"main": "./src/index.js",
"author": {
"name": "Juanfran Alcántara"
},
"keywords": [
"gulpplugin",
"scss-lint",
"scsslint",
"sass-lint",
"scss",
"lint",
"gulp"
],
"engines": {
"node": ">= 0.10"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"devDependencies": {
"chai": "~4.1.2",
"mocha": "~5.2.0",
"proxyquire": "^2.0.1",
"sinon": "^6.1.5"
},
"dependencies": {
"bluebird": "^3.3.5",
"chalk": "^2.4.1",
"dargs": "~6.0.0",
"event-stream": "3.3.4",
"fancy-log": "^1.3.2",
"plugin-error": "^1.0.1",
"pretty-data": "^0.40.0",
"slash": "^2.0.0",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3",
"xml2js": "^0.4.16"
}
}