extension-cli
Version:
CLI tool for building browser extensions
50 lines (49 loc) • 960 B
JSON
{
"name": "${safeName}",
"description": "${description}",
"version": "${version}",
"homepage": "${homepage}",
"author": "ENTER YOUR NAME HERE",
"repository": {
"type": "git",
"url": "ENTER GIT REPO URL"
},
"scripts": {
"start": "xt-build -e dev -w",
"start:firefox": "xt-build -e dev -p firefox -w",
"build": "xt-build -e prod",
"build:firefox": "xt-build -e prod -p firefox",
"clean": "xt-clean",
"docs": "xt-docs",
"test": "xt-test",
"coverage": "nyc --reporter=lcov npm run test",
"sync": "xt-sync"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintIgnore": [
"test/**/*"
],
"devDependencies": {
"extension-cli": "latest"
},
"xtdocs": {
"source": {
"include": [
"README.md",
"src"
]
}
},
"xtbuild": {
"js_bundles": [
{
"name": "background",
"src": "./src/**/*.js"
}
]
}
}