forked from olegskl/gulp-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "gulp-stylelint",
"version": "6.0.0",
"description": "Gulp plugin for running Stylelint results through various reporters.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint {src,test}/**/*.js",
"test": "tape -r babel-register test/*.spec.js",
"transpile": "babel src --out-dir dist",
"prepublishOnly": "npm run lint && npm test && npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/olegskl/gulp-stylelint.git"
},
"keywords": [
"gulpplugin",
"stylelint",
"postcss",
"css"
],
"author": "Oleg Sklyanchuk <sklyanchuk@gmail.com> (http://olegskl.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/olegskl/gulp-stylelint/issues"
},
"homepage": "https://github.com/olegskl/gulp-stylelint",
"peerDependencies": {
"stylelint": "^8.3.0"
},
"dependencies": {
"chalk": "^2.3.0",
"deep-extend": "^0.5.0",
"fancy-log": "^1.3.2",
"mkdirp": "^0.5.1",
"plugin-error": "^0.1.2",
"promise": "^8.0.1",
"source-map": "^0.6.1",
"strip-ansi": "^4.0.0",
"through2": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.12.1",
"eslint-config-meetic": "^5.0.1",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"sinon": "^4.1.2",
"stylelint": "^8.3.1",
"tape": "^4.8.0"
}
}