diff --git a/README.md b/README.md index e7455d9..408a311 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,10 @@ [logo-url]: https://npmjs.org/package/detect-port [npm-image]: https://img.shields.io/npm/v/detect-port.svg?style=flat-square [npm-url]: https://npmjs.org/package/detect-port -[travis-image]: https://img.shields.io/travis/xudafeng/detect-port.svg?style=flat-square -[travis-url]: https://travis-ci.org/xudafeng/detect-port -[coveralls-image]: https://img.shields.io/coveralls/xudafeng/detect-port.svg?style=flat-square -[coveralls-url]: https://coveralls.io/r/xudafeng/detect-port?branch=master +[travis-image]: https://img.shields.io/travis/node-modules/detect-port.svg?style=flat-square +[travis-url]: https://travis-ci.org/node-modules/detect-port +[coveralls-image]: https://img.shields.io/coveralls/node-modules/detect-port.svg?style=flat-square +[coveralls-url]: https://coveralls.io/r/node-modules/detect-port?branch=master [node-image]: https://img.shields.io/badge/node.js-%3E=_4-red.svg?style=flat-square [node-url]: http://nodejs.org/download/ [download-image]: https://img.shields.io/npm/dm/detect-port.svg?style=flat-square diff --git a/bin/detect-port b/bin/detect-port index 8cc08ef..fdd8c8d 100755 --- a/bin/detect-port +++ b/bin/detect-port @@ -1,16 +1,4 @@ #!/usr/bin/env node -/* ================================================================ - * detect-port by xdf(xudafeng[at]126.com) - * - * first created at : Tue Mar 17 2015 00:16:10 GMT+0800 (CST) - * - * ================================================================ - * Copyright 2013 xdf - * - * Licensed under the MIT License - * You may not use this file except in compliance with the License. - * - * ================================================================ */ 'use strict'; diff --git a/index.js b/index.js index 9f157c0..da660fd 100644 --- a/index.js +++ b/index.js @@ -1,16 +1,3 @@ -/* ================================================================ - * detect-port by xdf(xudafeng[at]126.com) - * - * first created at : Tue Mar 17 2015 00:16:10 GMT+0800 (CST) - * - * ================================================================ - * Copyright xdf - * - * Licensed under the MIT License - * You may not use this file except in compliance with the License. - * - * ================================================================ */ - 'use strict'; module.exports = require('./lib/detect-port'); diff --git a/lib/detect-port.js b/lib/detect-port.js index 9d3cbf9..891534a 100644 --- a/lib/detect-port.js +++ b/lib/detect-port.js @@ -1,16 +1,3 @@ -/* ================================================================ - * detect-port by xdf(xudafeng[at]126.com) - * - * first created at : Tue Mar 17 2015 00:16:10 GMT+0800 (CST) - * - * ================================================================ - * Copyright xdf - * - * Licensed under the MIT License - * You may not use this file except in compliance with the License. - * - * ================================================================ */ - 'use strict'; const net = require('net'); diff --git a/package.json b/package.json index 889c7a6..46d2b89 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "main": "index.js", "repository": { "type": "git", - "url": "git://github.com/xudafeng/detect-port.git" + "url": "git://github.com/node-modules/detect-port.git" }, "dependencies": {}, "devDependencies": { @@ -35,6 +35,6 @@ "engines": { "node": ">= 4.2.1" }, - "homepage": "https://github.com/xudafeng/detect-port", + "homepage": "https://github.com/node-modules/detect-port", "license": "MIT" } diff --git a/test/cli.test.js b/test/cli.test.js index 840787b..aad2494 100644 --- a/test/cli.test.js +++ b/test/cli.test.js @@ -1,16 +1,3 @@ -/* ================================================================ - * detect-port by xdf(xudafeng[at]126.com) - * - * first created at : Tue Mar 17 2015 00:16:10 GMT+0800 (CST) - * - * ================================================================ - * Copyright xdf - * - * Licensed under the MIT License - * You may not use this file except in compliance with the License. - * - * ================================================================ */ - 'use strict'; const path = require('path'); diff --git a/test/detect-port.test.js b/test/detect-port.test.js index 1f263e5..57b4142 100644 --- a/test/detect-port.test.js +++ b/test/detect-port.test.js @@ -1,16 +1,3 @@ -/* ================================================================ - * detect-port by xdf(xudafeng[at]126.com) - * - * first created at : Tue Mar 17 2015 00:16:10 GMT+0800 (CST) - * - * ================================================================ - * Copyright xdf - * - * Licensed under the MIT License - * You may not use this file except in compliance with the License. - * - * ================================================================ */ - 'use strict'; const detectPort = require('..');