├── .npmrc ├── index.js └── package.json /.npmrc: -------------------------------------------------------------------------------- 1 | registry=https://npm.pkg.github.com/adaptive -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = (str) => `Hello World ${str}` -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@adaptive/hello", 3 | "version": "0.1.0", 4 | "description": "Basic Hello World", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/adaptive/hello.git" 12 | }, 13 | "keywords": [ 14 | "npm", 15 | "hello" 16 | ], 17 | "author": "Hugo Romano", 18 | "license": "MIT", 19 | "bugs": { 20 | "url": "https://github.com/adaptive/hello/issues" 21 | }, 22 | "homepage": "https://github.com/adaptive/hello#readme", 23 | "publishConfig": { 24 | "registry": "https://npm.pkg.github.com/" 25 | } 26 | } 27 | --------------------------------------------------------------------------------