Based on the properties (and ordering) outlined in the NPM docs.
Last active
May 10, 2024 02:09
-
-
Save magnetikonline/e4d005426d15b085e5cd to your computer and use it in GitHub Desktop.
My npm package.json template.
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": "@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