From ec93e649396600c14bc81d1119a084046facf1bb Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Tue, 18 Sep 2018 07:58:49 +0100 Subject: [PATCH] Update root README.md: Add packages table --- README.md | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 04adc96..8d9a73f 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,15 @@ [![ci](https://img.shields.io/travis/pegjs/pegjs.svg)](https://travis-ci.org/pegjs/pegjs) [![coverage](https://img.shields.io/coveralls/github/pegjs/pegjs.svg)](https://coveralls.io/github/pegjs/pegjs) -[![release](https://img.shields.io/npm/v/pegjs.svg)](https://www.npmjs.com/package/pegjs) -[![dev](https://img.shields.io/npm/v/pegjs/dev.svg)](https://github.com/pegjs/pegjs) -[![bower](https://img.shields.io/bower/v/pegjs.svg)](https://github.com/pegjs/bower) [![license](https://img.shields.io/badge/license-mit-blue.svg)](https://opensource.org/licenses/MIT) PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting. You can use it to process complex data or computer languages and build transformers, interpreters, compilers and other tools easily. > PEG.js is still very much work in progress. There are no compatibility guarantees until version 1.0 -## features +| package | current version | maintainer | +| ------- | --------------- | ---------- | +| [pegjs](https://github.com/pegjs/pegjs/tree/master/packages/pegjs) | [![release](https://img.shields.io/npm/v/pegjs.svg)](https://www.npmjs.com/package/pegjs) [![dev](https://img.shields.io/npm/v/pegjs/dev.svg)](https://github.com/pegjs/pegjs) | [Futago-za Ryuu](https://github.com/futagoza) | - * Simple and expressive grammar syntax - * Integrates both lexical and syntactical analysis - * Parsers have excellent error reporting out of the box - * Based on [parsing expression grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism - more powerful than traditional LL(*k*) and LR(*k*) parsers - * Usable [from your browser](https://pegjs.org/online), from the command line, or via JavaScript API +------------------------ [![CrossBrowserTesting](website/img/CBT_OS-logo_Black-H.png)](https://crossbrowsertesting.com/) - -## documentation - -- [Getting Started](https://github.com/pegjs/pegjs/blob/master/docs/guides/getting-started.md) -- [Installation](https://github.com/pegjs/pegjs/blob/master/docs/guides/installation.md) -- [Generating a Parser](https://github.com/pegjs/pegjs/blob/master/docs/guides/generating-a-parser.md) -- [Using the Parser](https://github.com/pegjs/pegjs/blob/master/docs/guides/using-the-parser.md) -- [Grammar Syntax and Semantics](https://github.com/pegjs/pegjs/tree/master/docs/grammar) -- [JavaScript API](https://github.com/pegjs/pegjs/blob/master/docs/guides/javascript-api.md) -- [Plugins](https://github.com/pegjs/pegjs/blob/master/docs/guides/plugins.md) -- [Compatibility](https://github.com/pegjs/pegjs/blob/master/docs/notes/compatibility.md) -- [Development](https://github.com/pegjs/pegjs/blob/master/docs/notes/development.md) -- [Useful Links](https://github.com/pegjs/pegjs/blob/master/docs/notes/useful-links.md) - -## license - -Released under the [MIT License](https://opensource.org/licenses/MIT). - -Copyright (c) 2010-2016 [David Majda](https://majda.cz/)
-Copyright (c) 2017+ [Futago-za Ryuu](https://github.com/futagoza)