8000 Move to @feathersjs npm scope by daffl · Pull Request #699 · feathersjs/feathers · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/application.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const debug = require('debug')('feathers:application');
const { stripSlashes } = require('feathers-commons');
const { stripSlashes } = require('@feathersjs/commons');

const Uberproto = require('uberproto');
const events = require('./events');
Expand Down
2 changes: 1 addition & 1 deletion lib/hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const {
hooks,
validateArguments,
isPromise
} = require('feathers-commons');
} = require('@feathersjs/commons');

const {
createHookObject, getHooks, processHooks, enableHooks, makeArguments
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "feathers",
"description": "Build Better APIs, Faster than Ever.",
"name": "@feathersjs/feathers",
"description": "A REST and realtime API layer for modern applications.",
"version": "3.0.0-pre.1",
"homepage": "http://feathersjs.com",
"repository": {
Expand All @@ -14,11 +14,11 @@
"realtime"
],
"main": "lib/index",
"author": "Feathers <hello@feathersjs.com> (http://feathersjs.com)",
"contributors": [
"Eric Kryski <e.kryski@gmail.com> (http://erickryski.com)",
"David Luecke <daff@neyeon.de> (http://neyeon.com)"
],
"author": {
"name": "Feathers contributor",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img style="width: 100%; max-width: 400px;" src="http://feathersjs.com/img/feathers-logo-wide.png" alt="Feathers logo">

## An open source REST and realtime API layer for modern applications.
## A REST and realtime API layer for modern applications.

[![Greenkeeper badge](https://badges.greenkeeper.io/feathersjs/feathers.svg)](https://greenkeeper.io/)

Expand Down
0