forked from olegskl/gulp-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.5 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
{
"name": "@bolt/gulp-stylelint",
"version": "0.0.0",
"description": "Gulp plugin for running Stylelint results through various reporters.",
"main": "src/index.js",
"files": [
"/src/*.js"
],
"scripts": {
"lint": "eslint \"{src,test}/**/*.js\"",
"tape": "tape \"test/*.spec.js\"",
"test": "npm run lint && npm run tape",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/boltdesignsystem/gulp-stylelint.git"
},
"keywords": [
"gulpplugin",
"stylelint",
"postcss",
"css"
],
"author": "Oleg Sklyanchuk <[email protected]> (http://olegskl.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/olegskl/gulp-stylelint/issues"
},
"homepage": "https://github.com/olegskl/gulp-stylelint",
"engines": {
"node": ">=14.18.1"
},
"peerDependencies": {
"stylelint": "^14.1.0"
},
"dependencies": {
"chalk": "^4.1.2",
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"source-map": "^0.7.3",
"strip-ansi": "^6.0.0",
"through2": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-stylelint": "^11.1.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"sinon": "^11.1.2",
"stylelint": "^14.1.0",
"tape": "^4.13.0"
},
"eslintConfig": {
"extends": [
"stylelint"
],
"parserOptions": {
"ecmaVersion": 2017
}
}
}