Skip to content

Commit

Permalink
rename and remove scoped packages
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkPark committed Aug 6, 2018
1 parent 5c08edc commit 16463ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
var util = require('util'),
notifier = require('node-notifier'),
stripAnsi = require('strip-ansi'),
logger = require('@runner/logger'),
logger = require('runner-logger'),
name = 'notify',
log = logger.wrap(name),
loggers = {
Expand Down
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@runner/generator-notify",
"name": "runner-generator-notify",
"version": "1.0.0",
"description": "Tasks generator for popup notification.",
"author": {
Expand All @@ -10,16 +10,13 @@
"type": "git",
"url": "https://github.com/runner/generator-notify.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"dependencies": {
"@runner/logger": "^1.0.0",
"node-notifier": "^5.2.1",
"runner-logger": "^1.0.0",
"strip-ansi": "^4.0.0"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ Tasks generator for notification
================================

[![build status](https://img.shields.io/travis/runner/generator-notify.svg?style=flat-square)](https://travis-ci.org/runner/generator-notify)
[![npm version](https://img.shields.io/npm/v/@runner/generator-notify.svg?style=flat-square)](https://www.npmjs.com/package/@runner/generator-notify)
[![npm version](https://img.shields.io/npm/v/runner-generator-notify.svg?style=flat-square)](https://www.npmjs.com/package/runner-generator-notify)
[![dependencies status](https://img.shields.io/david/runner/generator-notify.svg?style=flat-square)](https://david-dm.org/runner/generator-notify)
[![devDependencies status](https://img.shields.io/david/dev/runner/generator-notify.svg?style=flat-square)](https://david-dm.org/runner/generator-notify?type=dev)
[![Gitter](https://img.shields.io/badge/gitter-join%20chat-blue.svg?style=flat-square)](https://gitter.im/DarkPark/runner)
[![RunKit](https://img.shields.io/badge/RunKit-try-yellow.svg?style=flat-square)](https://npm.runkit.com/@runner/generator-notify)
[![RunKit](https://img.shields.io/badge/RunKit-try-yellow.svg?style=flat-square)](https://npm.runkit.com/runner-generator-notify)


## Installation ##

```bash
npm install @runner/generator-notify
npm install runner-generator-notify
```


Expand All @@ -21,7 +21,7 @@ npm install @runner/generator-notify
Add to the scope:

```js
var generator = require('@runner/generator-notify');
var generator = require('runner-generator-notify');
```

Generate tasks according to the given config:
Expand Down Expand Up @@ -97,4 +97,4 @@ according to the contribution [rules](.github/contributing.md).

## License ##

`@runner/generator-notify` is released under the [GPL-3.0 License](http://opensource.org/licenses/GPL-3.0).
`runner-generator-notify` is released under the [GPL-3.0 License](http://opensource.org/licenses/GPL-3.0).

0 comments on commit 16463ae

Please sign in to comment.