From b16bc0feabbd5fb6e43be5778cb0ee76def0f138 Mon Sep 17 00:00:00 2001 From: Khaidi Chu Date: Tue, 19 Jun 2018 16:07:37 +0800 Subject: [PATCH] feat: transfer to node-modules (#2) --- README.md | 8 +++----- index.js | 5 ----- lib/shameimaru.js | 5 ----- lib/traverse.js | 5 ----- lib/utils.js | 5 ----- package.json | 8 ++++---- test/app1.test.js | 5 ----- test/app2.test.js | 5 ----- test/utils.js | 5 ----- 9 files changed, 7 insertions(+), 44 deletions(-) diff --git a/README.md b/README.md index fde7f17..c7fdd4d 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ [![Shameimaru](http://img.shields.io/npm/v/shameimaru.svg)](https://www.npmjs.org/package/shameimaru) [![Shameimaru](http://img.shields.io/npm/dm/shameimaru.svg)](https://www.npmjs.org/package/shameimaru) -[![Build Status](https://travis-ci.org/XadillaX/shameimaru.svg?branch=master)](https://travis-ci.org/XadillaX/shameimaru) -[![Coverage Status](https://img.shields.io/coveralls/XadillaX/shameimaru/master.svg)](https://coveralls.io/r/XadillaX/shameimaru?branch=master) +[![Build Status](https://travis-ci.org/node-modules/shameimaru.svg?branch=master)](https://travis-ci.org/node-modules/shameimaru) +[![Coverage Status](https://img.shields.io/coveralls/node-modules/shameimaru/master.svg)](https://coveralls.io/r/node-modules/shameimaru?branch=master) [![License](https://img.shields.io/npm/l/shameimaru.svg?style=flat)](https://www.npmjs.org/package/shameimaru) -[![Dependency Status](https://david-dm.org/XadillaX/shameimaru.svg)](https://david-dm.org/XadillaX/shameimaru) +[![Dependency Status](https://david-dm.org/node-modules/shameimaru.svg)](https://david-dm.org/node-modules/shameimaru) Shameimaru Aya likes to traverse node_modules and capture the tree. @@ -96,5 +96,3 @@ Each element in the result may contains keys as below: ## Contribute You're welcome to fork and make pull requests! - -「雖然我覺得不怎麼可能有人會關注我」 diff --git a/index.js b/index.js index f315f95..aa1ec3b 100644 --- a/index.js +++ b/index.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-11 12:41:09 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; module.exports = require("./lib/shameimaru"); diff --git a/lib/shameimaru.js b/lib/shameimaru.js index 77f92a0..98cc960 100644 --- a/lib/shameimaru.js +++ b/lib/shameimaru.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-11 14:01:00 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; const fs = require("fs"); diff --git a/lib/traverse.js b/lib/traverse.js index a5dfcbf..c28f89c 100644 --- a/lib/traverse.js +++ b/lib/traverse.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-13 20:47:50 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; const path = require("path"); diff --git a/lib/utils.js b/lib/utils.js index 918eb5e..0572b61 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-12 16:08:26 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; const fs = require("mz/fs"); diff --git a/package.json b/package.json index 4285256..5c3bfd2 100644 --- a/package.json +++ b/package.json @@ -27,14 +27,14 @@ "lib", "index.js" ], - "homepage": "https://github.com/XadillaX/shameimaru", + "homepage": "https://github.com/node-modules/shameimaru", "repository": { "type": "git", - "url": "git://github.com/XadillaX/shameimaru.git", - "web": "https://github.com/XadillaX/shameimaru" + "url": "git://github.com/node-modules/shameimaru.git", + "web": "https://github.com/node-modules/shameimaru" }, "bugs": { - "url": "https://github.com/XadillaX/shameimaru" + "url": "https://github.com/node-modules/shameimaru" }, "keywords": [ "dependency tree", diff --git a/test/app1.test.js b/test/app1.test.js index 732e276..81d9b71 100644 --- a/test/app1.test.js +++ b/test/app1.test.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-13 15:36:23 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; require("should"); diff --git a/test/app2.test.js b/test/app2.test.js index 8d85329..afd1eca 100644 --- a/test/app2.test.js +++ b/test/app2.test.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-13 15:36:23 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; require("should"); diff --git a/test/utils.js b/test/utils.js index 2f2daa3..737c514 100644 --- a/test/utils.js +++ b/test/utils.js @@ -1,8 +1,3 @@ -/** - * XadillaX created at 2018-06-13 15:39:26 with ❤ - * - * Copyright (c) 2018 xcoder.in, all rights reserved. - */ "use strict"; const cp = require("child_process");