forked from MarcDiethelm/grunt-less-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "grunt-less-imports",
"description": "A grunt task to create LessCSS @import statements from a collection of stylesheet files",
"version": "1.0.0",
"homepage": "https://github.com/MarcDiethelm/grunt-less-imports",
"author": {
"name": "Marc Diethelm",
"email": "marc@web5.me",
"url": "https://github.com/MarcDiethelm"
},
"repository": {
"type": "git",
"url": "git://github.com/MarcDiethelm/grunt-less-imports.git"
},
"bugs": {
"url": "https://github.com/MarcDiethelm/grunt-less-imports/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MarcDiethelm/grunt-less-imports/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-less": "^3.0.0",
"grunt-mocha-test": "^0.12.0"
},
"peerDependencies": {
"grunt": "^1.5.3"
},
"keywords": [
"gruntplugin",
"less",
"lessCSS",
"import",
"@import",
"debug",
"error messages"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}