Skip to content

Instantly share code, notes, and snippets.

@magnetikonline
Last active May 10, 2024 02:09
Show Gist options
  • Save magnetikonline/e4d005426d15b085e5cd to your computer and use it in GitHub Desktop.
Save magnetikonline/e4d005426d15b085e5cd to your computer and use it in GitHub Desktop.
My npm package.json template.
{
"name": "@magnetikonline/PACKAGE_NAME",
"version": "0.1.0",
"description": "DESCRIPTION",
"keywords": [
"KEYWORD_1",
"KEYWORD_2",
"KEYWORD_3"
],
"license": "MIT",
"author": "Peter Mescalchin (http://magnetikonline.com)",
"main": "main.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/magnetikonline/PACKAGE_NAME.git"
},
"dependencies": {
"ONE": "SEMVER",
"TWO": "SEMVER",
"THREE": "SEMVER"
},
"devDependencies": {
"FOUR": "SEMVER",
"FIVE": "SEMVER",
"SIX": "SEMVER"
},
"private": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment