mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
19 lines
453 B
JSON
19 lines
453 B
JSON
{
|
|
"name": "webpack-webextension",
|
|
"version": "1.0.0",
|
|
"description": "A minimal example of how to use npm modules from within a WebExtension.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "webpack"
|
|
},
|
|
"author": "Martin Giger (https://humanoids.be)",
|
|
"license": "MPL-2.0",
|
|
"devDependencies": {
|
|
"webpack": "^1.13.1"
|
|
},
|
|
"dependencies": {
|
|
"left-pad": "^1.1.1"
|
|
}
|
|
}
|