forked from jbleuzen/node-cssmin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·44 lines (44 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
{
"name": "ycssmin",
"version": "1.0.1",
"description": "CSS Minification from YUICompressor",
"main": "./cssmin",
"bin": {
"ycssmin": "./bin/cssmin"
},
"devDependencies": {
"yui-lint": "~0.1.1",
"jshint": "~0.9.0",
"istanbul": "~0.1.8",
"vows": "*"
},
"author": "Dav Glass <davglass@gmail.com>",
"contributors" : [
"Johan Bleuzen (http://blog.johanbleuzen.fr)",
"Dav Glass <davglass@gmail.com>",
"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)"
],
"keywords": [
"minify", "cssmin", "compressor", "yuicompressor"
],
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json cssmin.js package.json",
"test": "istanbul cover --print both -- vows --spec ./tests/*.js"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/yui/ycssmin"
},
"preferGlobal": "true",
"bugs": { "url" : "http://github.com/yui/ycssmin/issues" },
"licenses":[
{
"type" : "BSD",
"url" : "https://github.com/yui/ycssmin/blob/master/LICENSE"
}
],
"repository": {
"type":"git",
"url":"http://github.com/yui/ycssmin.git"
}
}