Last active
January 21, 2016 12:26
-
-
Save makevoid/d6b9796cdd5ee631fe8a to your computer and use it in GitHub Desktop.
Just a test npm module to use with package.json repository gist rule - just use "repository": "gist:d6b9796cdd5ee631fe8a" to load this gist into your app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // usage: | |
| // | |
| // var antani = require("./antani.js") | |
| // | |
| // console.log(antani()) | |
| // | |
| module.exports = function(){ | |
| return "antani"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "antani", | |
| "version": "0.0.1", | |
| "description": "", | |
| "main": "antani.js", | |
| "directories": { | |
| "example": "example" | |
| }, | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git+https://gist.github.com/d6b9796cdd5ee631fe8a.git" | |
| }, | |
| "author": "", | |
| "license": "ISC", | |
| "bugs": { | |
| "url": "https://gist.github.com/d6b9796cdd5ee631fe8a" | |
| }, | |
| "homepage": "https://gist.github.com/d6b9796cdd5ee631fe8a" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment