Skip to content

Instantly share code, notes, and snippets.

@ganeshjaiwal
Created October 2, 2020 07:12
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 ganeshjaiwal/1d90f9e5f1999351d361ef1de2f87b59 to your computer and use it in GitHub Desktop.
Save ganeshjaiwal/1d90f9e5f1999351d361ef1de2f87b59 to your computer and use it in GitHub Desktop.
package.json file with required dependencies to automate publishing extension process.
{
"name": "chrome-extension-demo",
"version": "1.0.0",
"description": "This is a demo extension",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshjaiwal/Chrome-extension-demo.git"
},
"keywords": [
"chrome",
"extension",
"browser",
"javascript"
],
"author": "Ganesh N. Jaiwal",
"license": "ISC",
"bugs": {
"url": "https://github.com/ganeshjaiwal/Chrome-extension-demo/issues"
},
"homepage": "https://github.com/ganeshjaiwal/Chrome-extension-demo#readme",
"devDependencies": {
"chrome-webstore-manager": "^0.4.2",
"fs-extra": "^9.0.1",
"jsonfile": "^6.0.1",
"zip-local": "^0.3.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment