Skip to content

Instantly share code, notes, and snippets.

@makevoid
Last active January 21, 2016 12:26
Show Gist options
  • Select an option

  • Save makevoid/d6b9796cdd5ee631fe8a to your computer and use it in GitHub Desktop.

Select an option

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
// usage:
//
// var antani = require("./antani.js")
//
// console.log(antani())
//
module.exports = function(){
return "antani";
}
{
"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