-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·41 lines (41 loc) · 2.13 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
{
"name": "css-stats",
"description": "CSS Stats uses StyleStats or CSSCSS to parse a CSS file and give stats on it",
"version": "0.1.8",
"author": {
"name": "Kanikar Phan",
"url": "https://github.com/kanikarphan"
},
"repository": {
"type": "git",
"url": "https://github.com/kanikarphan/css-stats"
},
"bin": {
"css-stats": "app.js"
},
"engine": {
"node": ">=0.4.0"
},
"dependencies": {
"cmdify": "0.0.4",
"colors": "^0.6.2",
"commander": "^2.3.0",
"express": "^4.8.3",
"inquirer": "^0.6.0",
"open": "0.0.5",
"progress": "^1.1.8",
"stylestats": "^4.1.2",
"swig": "^1.4.2"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/kanikarphan/css-stats/issues"
},
"homepage": "https://github.com/kanikarphan/css-stats",
"_id": "[email protected]",
"_from": "css-stats@",
"scripts": {
"start": "node server.js"
},
"readme": "# CSS Stats\n\nCSS Stats utilize [Stylestats](https://github.com/t32k/stylestats) and [CSSCSS](https://github.com/zmoazeni/csscss) to parse a css file and gives you stats on it.\n\n## Installing\n\n```\nnpm install -g css-stats\n```\n\n## Requirement\n\nCSS Stats require Ruby (`v1.9.x` and up) installed. OSX should have Ruby preinstalled. For Windows you can use [RubyInstaller](http://rubyinstaller.org/). This is a Windows-based installer, the easiest way to get Ruby on Windows. To check if Ruby is installed on your machine use `ruby -v`. \n\n## Getting Started\n\n```\ncss-stats setup\n```\n\n## Usage\n\n```\nUsage: css-stats [--stylestats|--csscss] [css]\n\nCommands:\n\nsetup\n install the necessary css parser engines\n\nview [--json] [--port]\n visual view for css stats\n\n\nOptions:\n\n -h, --help output usage information\n -V, --version output the version number\n -s, --stylestats [css] parse css for overall stats\n -c, --csscss [css] parse css for rulesets that have duplicated declarations\n -o, --output [path] output path for parse css stats\n -j, --json [json] stylestats or csscss json\n -p, --port [number] port number for webpage\n```"
}