-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "grunt-lesslint",
"version": "5.0.0",
"description": "Grunt task for validating LESS files with CSS Lint",
"main": "tasks/less-lint-task",
"keywords": [
"css",
"grunt",
"gruntplugin",
"less",
"lint"
],
"scripts": {
"prepublish": "grunt clean lint coffee",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/jgable/grunt-lesslint.git"
},
"bugs": {
"url": "https://github.com/jgable/grunt-lesslint/issues"
},
"homepage": "http://jgable.github.io/grunt-lesslint",
"author": "Jacob Gable <[email protected]>",
"contributors": [
"David Pärsson <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"cache-swap": "~0.2.3",
"chalk": "^1.1.3",
"csslint": "^1.0.5",
"less": "^3.8.1",
"lodash": "^4.12.0",
"source-map": "~0.5.6",
"strip-json-comments": "^2.0.1",
"strip-path": "~1.0.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-coffeelint": "~0.0.8",
"grunt-contrib-coffee": "~1.0.0",
"grunt-shell": "^1.3.0",
"jasmine-focused": "~1.0.4",
"rimraf": "^2.5.2",
"tmp": "~0.0.23",
"xml2js": "~0.4.1"
},
"peerDependencies": {
"grunt": ">=0.4.5"
}
}