-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 854 Bytes
/
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
{
"name": "PrettyCSS",
"version": "0.3.19",
"preferGlobal": true,
"author": "Tyler Akins <fidian@rumkin.com>",
"description": "CSS pretty printer, lint checker, and validator",
"homepage": "https://github.com/fidian/PrettyCSS",
"contributors": [
"Tyler Akins <fidian@rumkin.com> (http://rumkin.com/)",
"Michael Plaxico <michael.plaxico@bestbuy.com>"
],
"bin": {
"prettycss": "./bin/prettycss"
},
"scripts": {
"test": "vows"
},
"main": "./lib/prettycss.js",
"repository": {
"type": "git",
"url": "https://github.com/fidian/PrettyCSS.git"
},
"keywords": [
"css",
"beautifier",
"pretty-printer",
"lint",
"validator"
],
"dependencies": {
"option-parser": "~1.0.0"
},
"devDependencies": {
"browserify": "*",
"diff": "*",
"vows": "*"
},
"license": "MIT",
"engines": {
"node": ">=0.6",
"npm": ">=1"
}
}