Skip to content

Commit

Permalink
dickeyxxx -> jdxcode
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 27, 2017
1 parent aa5ae84 commit 96a453c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
@@ -1,9 +1,9 @@
# npm-register [![CircleCI](https://circleci.com/gh/dickeyxxx/npm-register/tree/master.svg?style=svg)](https://circleci.com/gh/dickeyxxx/npm-register/tree/master)
# npm-register [![CircleCI](https://circleci.com/gh/jdxcode/npm-register/tree/master.svg?style=svg)](https://circleci.com/gh/jdxcode/npm-register/tree/master)

Your own private npm registry and backup server. Used in production and maintained by Heroku. Designed to be easy to set up and maintain, performant, and stable.

[![Code Climate](https://codeclimate.com/github/dickeyxxx/npm-register/badges/gpa.svg)](https://codeclimate.com/github/dickeyxxx/npm-register)
[![codecov](https://codecov.io/gh/dickeyxxx/npm-register/branch/master/graph/badge.svg)](https://codecov.io/gh/dickeyxxx/npm-register)
[![Code Climate](https://codeclimate.com/github/jdxcode/npm-register/badges/gpa.svg)](https://codeclimate.com/github/jdxcode/npm-register)
[![codecov](https://codecov.io/gh/jdxcode/npm-register/branch/master/graph/badge.svg)](https://codecov.io/gh/jdxcode/npm-register)

Overview
--------
Expand Down Expand Up @@ -91,11 +91,11 @@ Then you can login with npm. Note that the email is ignored by the server, but t

```
$ npm login --registry http://myregistry
Username: dickeyxxx
Username: jdxcode
Password:
Email: (this IS public) jeff@heroku.com
Email: (this IS public) foo@heroku.com
$ npm whoami --registry http://myregistry
dickeyxxx
jdxcode
```

This stores the credentials in `~/.npmrc`. You can now use `npm publish` to publish packages.
Expand Down
2 changes: 1 addition & 1 deletion app.json
Expand Up @@ -2,7 +2,7 @@
"name": "npm-register",
"description": "Your own private npm registry and backup server",
"logo": "http://node-js-sample.herokuapp.com/node.svg",
"repository": "https://github.com/dickeyxxx/npm-register",
"repository": "https://github.com/jdxcode/npm-register",
"keywords": ["node", "npm"],
"env": {
"NPM_REGISTER_STORAGE": "s3",
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Expand Up @@ -6,7 +6,7 @@ stages:
build:
workDir: ~/npm-register
environment:
- CIRCLE_PROJECT_USERNAME: dickeyxxx
- CIRCLE_PROJECT_USERNAME: jdxcode
- CIRCLE_PROJECT_REPONAME: npm-register
steps:
- type: checkout
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -2,9 +2,9 @@
"name": "npm-register",
"description": "Your own private npm registry and backup server",
"version": "2.2.0",
"author": "Jeff Dickey (@dickeyxxx)",
"author": "Jeff Dickey (@jdxcode)",
"bin": "bin/npm-register",
"bugs": "https://github.com/dickeyxxx/npm-register",
"bugs": "https://github.com/jdxcode/npm-register",
"dependencies": {
"aws-sdk": "2.5.2",
"bluebird": "3.4.1",
Expand Down Expand Up @@ -37,13 +37,13 @@
"enginesStrict": {
"node": ">=8.1.4"
},
"homepage": "https://github.com/dickeyxxx/npm-register",
"homepage": "https://github.com/jdxcode/npm-register",
"keywords": [
"npm"
],
"license": "ISC",
"main": "start.js",
"repository": "dickeyxxx/npm-register",
"repository": "jdxcode/npm-register",
"scripts": {
"start": "./bin/npm-register start",
"test": "nyc mocha && standard"
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Expand Up @@ -6,6 +6,6 @@
<title>npm server</title>
</head>
<body>
Running <a href="https://github.com/dickeyxxx/npm-register">npm-register</a>
Running <a href="https://github.com/jdxcode/npm-register">npm-register</a>
</body>
</html>

0 comments on commit 96a453c

Please sign in to comment.