Servicedock: Webgui for Docker Swarm. Manage Docker Swarm a a Service.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
6.8 KiB

{
"name": "stylus",
"description": "Robust, expressive, and feature-rich CSS superset",
"version": "0.53.0",
"author": {
"name": "TJ Holowaychuk",
"email": "tj@vision-media.ca"
},
"keywords": [
"css",
"parser",
"style",
"stylesheets",
"jade",
"language"
],
"repository": {
"type": "git",
"url": "git://github.com/stylus/stylus"
},
"main": "./index.js",
"browserify": "./lib/browserify.js",
"engines": {
"node": "*"
},
"bin": {
"stylus": "./bin/stylus"
},
"scripts": {
"prepublish": "npm prune",
"test": "mocha test/ test/middleware/ --require should --bail --reporter dot",
"test-cov": "mocha test/ test/middleware/ --require should --bail --reporter html-cov > coverage.html"
},
"dependencies": {
"css-parse": "1.7.x",
"mkdirp": "0.5.x",
"debug": "*",
"sax": "0.5.x",
"glob": "3.2.x",
"source-map": "0.1.x"
},
"devDependencies": {
"should": "2.x",
"mocha": "*",
"jscoverage": "0.3.8"
},
"bugs": {
"url": "https://github.com/stylus/stylus/issues"
},
"homepage": "https://github.com/stylus/stylus",
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"license": "MIT",
"readme": "# Stylus [![Build Status](https://travis-ci.org/stylus/stylus.svg?branch=master)](https://travis-ci.org/stylus/stylus)\n\n Stylus is a revolutionary new language, providing an efficient, dynamic, and expressive way to generate CSS. Supporting both an indented syntax and regular CSS style.\n\n## Installation\n\n```bash\n$ npm install stylus -g\n```\n\n### Example\n\n```stylus\nborder-radius()\n -webkit-border-radius: arguments\n -moz-border-radius: arguments\n border-radius: arguments\n\nbody a\n font: 12px/1.4 \"Lucida Grande\", Arial, sans-serif\n background: black\n color: #ccc\n\nform input\n padding: 5px\n border: 1px solid\n border-radius: 5px\n```\n\ncompiles to:\n\n```css\nbody a {\n font: 12px/1.4 \"Lucida Grande\", Arial, sans-serif;\n background: #000;\n color: #ccc;\n}\nform input {\n padding: 5px;\n border: 1px solid;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px;\n}\n```\n\nthe following is equivalent to the indented version of Stylus source, using the CSS syntax instead:\n\n```stylus\nborder-radius() {\n -webkit-border-radius: arguments\n -moz-border-radius: arguments\n border-radius: arguments\n}\n\nbody a {\n font: 12px/1.4 \"Lucida Grande\", Arial, sans-serif;\n background: black;\n color: #ccc;\n}\n\nform input {\n padding: 5px;\n border: 1px solid;\n border-radius: 5px;\n}\n```\n\n### Features\n\n Stylus has _many_ features. Detailed documentation links follow:\n\n - [css syntax](docs/css-style.md) support\n - [mixins](docs/mixins.md)\n - [keyword arguments](docs/kwargs.md)\n - [variables](docs/variables.md)\n - [interpolation](docs/interpolation.md)\n - arithmetic, logical, and equality [operators](docs/operators.md)\n - [importing](docs/import.md) of other stylus sheets\n - [introspection api](docs/introspection.md)\n - type coercion\n - [@extend](docs/extend.md)\n - [conditionals](docs/conditionals.md)\n - [iteration](docs/iteration.md)\n - nested [selectors](docs/selectors.md)\n - parent reference\n - in-language [functions](docs/functions.md)\n - [variable arguments](docs/vargs.md)\n - built-in [functions](docs/bifs.md) (over 60)\n - optional [image inlining](docs/functions.url.md)\n - optional compression\n - JavaScript [API](docs/js.md)\n - extremely terse syntax\n - stylus [executable](docs/executable.md)\n - [error reporting](docs/error-reporting.md)\n - single-line and multi-line [comments](docs/comments.md)\n - css [literal](docs/literal.md)\n - character [escaping](docs/escape.md)\n - [@keyframes](docs/keyframes.md) support & expansion\n - [@font-face](docs/font-face.md) support\n - [@media](docs/media.md) support\n - Connect [Middleware](docs/middleware.md)\n - TextMate [bundle](docs/textmate.md)\n - Coda/SubEtha Edit [Syntax mode](https://github.com/atljeremy/Stylus.mode)\n - gedit [language-spec](docs/gedit.md)\n - VIM [Syntax](https://github.com/wavded/vim-stylus)\n - Espresso [Sugar](https://github.com/aljs/Stylus.sugar)\n - [Firebug extension](docs/firebug.md)\n - heroku [web service](http://styl.herokuapp.com/) for compiling stylus\n - [style guide](https://github.com/lepture/ganam) parser and generator\n - transparent vendor-specific function expansion\n\n### Community modules\n\n - https://github.com/stylus/stylus/wiki\n\n### Framework Support\n\n - [Connect](docs/middleware.md)\n - [Play! 2.0](https://github.com/patiencelabs/play-stylus)\n - [Ruby On Rails](https://github.com/forgecrafted/ruby-stylus-source)\n - [Meteor](http://docs.meteor.com/#stylus)\n - [Grails](http://grails.org/plugin/stylus-asset-pipeline)\n - [Derby](https://github.com/derbyjs/derby-stylus)\n\n### CMS Support\n\n - [DocPad](https://github.com/docpad/docpad)\n - [Punch](https://github.com/laktek/punch-stylus-compiler)\n\n### Screencasts\n\n - [Stylus Intro](http://www.screenr.com/bNY)\n - [CSS Syntax & Postfix Conditionals](http://www.screenr.com/A8v)\n\n### Authors\n\n - [TJ Holowaychuk (tj)](https://github.com/tj)\n\n### More Information\n\n - Language [comparisons](docs/comp
"readmeFilename": "Readme.md",
"_id": "stylus@0.53.0",
"dist": {
"shasum": "6b5fb986787b4d9bbaf7aa730c7f9a1ce7ddc019"
},
"_from": "stylus@>= 0.0.1",
"_resolved": "https://registry.npmjs.org/stylus/-/stylus-0.53.0.tgz"
}