Skip to content

Instantly share code, notes, and snippets.

@joelworsham
Created November 19, 2014 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelworsham/052623b5b26e3247a1b3 to your computer and use it in GitHub Desktop.
Save joelworsham/052623b5b26e3247a1b3 to your computer and use it in GitHub Desktop.
A basic package.json file for a WordPress plugin.
{
"name": "ProjectName",
"version": "1.0.0",
"description": "This plugin is incredible.",
"repository": {
"type": "git",
"url": "https://github.com/username/repository"
},
"author": "Thats you!",
"license": "GPLv2 or later",
"devDependencies": {
"grunt": "~0.4",
"grunt-autoprefixer": "~1.0",
"grunt-contrib-uglify": "~0.5",
"grunt-contrib-watch": "~0.6",
"grunt-contrib-sass": "~0.8",
"grunt-contrib-copy": "~0.6",
"grunt-notify": "~0.4",
"matchdep": "~0.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment