diff --git a/README.md b/README.md
index 2ee123da7c8a1cbc3540fadf8644b4ab6820fdd0..52274ac84f2a5c7d6b183f2f5159d6e4d134dca4 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,6 @@
 
 Add Math to your Markdown
 
-[![Build Status](https://travis-ci.org/iktakahiro/markdown-it-katex.svg?branch=master)](https://travis-ci.org/iktakahiro/markdown-it-katex)
-
 [KaTeX](https://github.com/Khan/KaTeX) is a faster alternative to MathJax. This plugin makes it easy to support in your markdown.
 
 Need convincing?
@@ -19,14 +17,14 @@ npm install markdown-it
 Install the plugin
 
 ```
-npm install @iktakahiro/markdown-it-katex
+npm install @abreto/markdown-it-katex
 ```
 
 Use it in your javascript
 
 ```javascript
 var md = require('markdown-it')(),
-    mk = require('@iktakahiro/markdown-it-katex');
+    mk = require('@abreto/markdown-it-katex');
 
 md.use(mk);
 
diff --git a/package.json b/package.json
index ba4d21fa1393bc42b03e0dbb2418d23f826ced9a..31f015f602127f0db365595c407a34be92e98695 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
 {
-    "name": "@iktakahiro/markdown-it-katex",
+    "name": "@abreto/markdown-it-katex",
     "version": "3.1.0",
     "description": "Fast math support for markdown-it with KaTeX",
     "main": "index.js",
@@ -9,7 +9,7 @@
     },
     "repository": {
         "type": "git",
-        "url": "git+ssh://git@github.com:iktakahiro/markdown-it-katex.git"
+        "url": "git+ssh://git@github.com:Abreto/markdown-it-katex.git"
     },
     "keywords": [
         "markdown",
@@ -19,7 +19,7 @@
         "markdown-it-plugin",
         "markdown-it"
     ],
-    "author": "Takahiro Ethan Ikeuchi @iktakahiro",
+    "author": "Abreto Fu",
     "license": "MIT",
     "dependencies": {
         "katex": "^0.10.0"