package.json file with required dependencies to automate publishing extension process.
This file contains 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": "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