-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "enhance-css",
"version": "1.1.0",
"author": "Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz)",
"description": "A well-tested CSS enhancer (Base64, assets hosts, cache boosters, etc)",
"license": "MIT",
"keywords": [
"css",
"enhance",
"base64",
"assets",
"asset hosts"
],
"homepage": "https://github.com/jakubpawlowicz/enhance-css",
"repository": {
"type": "git",
"url": "https://github.com/jakubpawlowicz/enhance-css.git"
},
"bugs": {
"url": "https://github.com/jakubpawlowicz/enhance-css/issues"
},
"bin": {
"enhancecss": "./bin/enhancecss"
},
"main": "index.js",
"files": [
"bin",
"lib",
"History.md",
"index.js",
"LICENSE"
],
"scripts": {
"check": "jshint ./bin/enhancecss .",
"prepublish": "npm run check",
"test": "vows"
},
"dependencies": {
"commander": "2.3.x"
},
"devDependencies": {
"jshint": "2.5.x",
"vows": "0.7.x"
},
"engines": {
"node": ">=0.8.0"
}
}