forked from wikimedia/grunt-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 968 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": "grunt-stylelint",
"version": "0.18.0",
"description": "A Grunt checker for CSS files using Stylelint",
"scripts": {
"test": "env NO_COLOR=1 grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/grunt-stylelint.git"
},
"keywords": [
"gruntplugin",
"checker",
"stylelint"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wikimedia/grunt-stylelint/issues"
},
"homepage": "https://github.com/wikimedia/grunt-stylelint",
"dependencies": {
"chalk": "^5.2.0"
},
"peerDependencies": {
"stylelint": "15.x"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"eslint-config-wikimedia": "0.24.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-nodeunit": "4.0.0",
"grunt-eslint": "24.0.1",
"lodash": "4.17.21",
"postcss-less": "^6.0.0",
"stylelint": "^15.2.0",
"stylelint-less": "^1.0.6"
}
}