Skip to content

Instantly share code, notes, and snippets.

@aandrewww
Created June 12, 2018 06:41
Show Gist options
  • Save aandrewww/561e470751806ff0690536399d9e3ce4 to your computer and use it in GitHub Desktop.
Save aandrewww/561e470751806ff0690536399d9e3ce4 to your computer and use it in GitHub Desktop.
package.json boilerplate
{
"name": "package-name",
"version": "0.0.1",
"description": "Package Description",
"keywords": ["key", "words"],
"main": "app.js",
"engines": {
"node": ">8.0.0"
},
"author": {
"name": "Andrew Avdeev",
"email": "andrewww.avdeev@gmail.com",
"url": "https://andrewavdeev.com/"
},
"homepage": "https://github.com/aandrewww/package",
"bugs": {
"url": "https://github.com/aandrewww/package/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aandrewww/package.git"
},
"license": "MIT",
"scripts": {
"start": "node index.js",
"lint": "eslint -c ./.eslintrc .",
"test": "echo 'All ok!'"
},
"dependencies": {},
"devDependencies": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment