-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·87 lines (87 loc) · 1.73 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "combine-mq",
"version": "0.8.1",
"description": "Combine matching media queries into one media query definition.",
"main": "lib/combine-mq.js",
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/frontendfriends/node-combine-mq"
},
"keywords": [
"Media",
"Queries",
"Combine",
"Optimisation",
"Less",
"Sass",
"CSS"
],
"maintainers": [
{
"name": "Paul Welsh",
"email": "spacedawwwg@gmail.com",
"web": "https://github.com/spacedawwwg"
},
{
"name": "Daniel Furze",
"email": "daniel@furzeface.com",
"web": "https://github.com/furzeface"
}
],
"contributors": [
{
"name": "Paul Welsh",
"email": "spacedawwwg@gmail.com"
},
{
"name": "Daniel Furze",
"email": "daniel@furzeface.com"
},
{
"name": "John Cashmore"
},
{
"name": "Thomas Dobber",
"email": "thomasdobber@gmail.com"
},
{
"name": "Loz Calver",
"email": "lozcalver@bigfork.co.uk"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/frontendfriends/node-combine-mq/issues"
},
"homepage": "https://github.com/frontendfriends/node-combine-mq",
"dependencies": {
"chalk": "^1.0.0",
"commander": "^2.3.0",
"css-parse": "^2.0.0",
"css-stringify": "^2.0.0",
"dammit": "^0.5.1",
"mkdirp": "^0.5.0",
"superb": "^1.0.3"
},
"devDependencies": {
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsdoc": "^0.5.7",
"grunt-mocha-test": "^0.12.2",
"grunt-notify": "^0.4.1",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.0.0"
},
"scripts": {
"test": "grunt test"
},
"bin": {
"cmq": "./cli.js"
}
}