Skip to content

Commit

Permalink
fix(package.json): remove @approvals-cloud prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaulz authored Sep 10, 2019
2 parents 2312cb0 + 09d3083 commit 4a7f9cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

> Another simple parser for advanced search query syntax.
> This version is a fork of https://github.com/mixmaxhq/search-string but it is actively maintained and uses TypeScript.
[![npm version](https://badge.fury.io/js/%40approvals-cloud%2Fadvanced-search-query.svg)](https://badge.fury.io/js/%40approvals-cloud%2Fadvanced-search-query)
[![npm version](https://badge.fury.io/js/advanced-search-query.svg)](https://badge.fury.io/js/advanced-search-query)

It parses typical Gmail-style search strings like:

Expand All @@ -17,13 +15,13 @@ And returns an instance which can be mutated, return different data structures,
## Installation

```shell
$ yarn add @approvals-cloud/advanced-search-query
$ yarn add advanced-search-query
```

## Usage

```javascript
const AdvancedSearchQuery = require('@approvals-cloud/advanced-search-query')
import AdvancedSearchQuery from 'advanced-search-query'

// Perform parsing
const str = 'to:me -from:[email protected] foobar1 -foobar2'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@approvals-cloud/advanced-search-query",
"name": "advanced-search-query",
"version": "0.0.0-development",
"description": "Another parser for advanced search query syntax.",
"main": "build/cjs/src/index.js",
Expand Down

0 comments on commit 4a7f9cf

Please sign in to comment.