mirror of
https://github.com/dessant/buster.git
synced 2024-11-13 19:10:34 +00:00
93 lines
3.3 KiB
JSON
Executable File
93 lines
3.3 KiB
JSON
Executable File
{
|
|
"name": "buster",
|
|
"version": "0.2.0",
|
|
"author": "Armin Sebastian",
|
|
"repository": "https://github.com/dessant/buster",
|
|
"license": "GPL-3.0-only",
|
|
"scripts": {
|
|
"_build": "cross-env NODE_ENV=development gulp",
|
|
"build:chrome": "cross-env TARGET_ENV=chrome yarn _build",
|
|
"build:firefox": "cross-env TARGET_ENV=firefox yarn _build",
|
|
"build:opera": "cross-env TARGET_ENV=opera yarn _build",
|
|
"build:all": "run-s 'build:@(chrome|firefox|opera)'",
|
|
"_build:prod": "cross-env NODE_ENV=production gulp",
|
|
"build:prod:chrome": "cross-env TARGET_ENV=chrome yarn _build:prod",
|
|
"build:prod:firefox": "cross-env TARGET_ENV=firefox yarn _build:prod",
|
|
"build:prod:opera": "cross-env TARGET_ENV=opera yarn _build:prod",
|
|
"build:prod:all": "run-s 'build:@(chrome|firefox|opera)'",
|
|
"_build:prod:zip": "yarn _build:prod && gulp zip",
|
|
"build:prod:zip:chrome": "cross-env TARGET_ENV=chrome yarn _build:prod:zip",
|
|
"build:prod:zip:firefox": "cross-env TARGET_ENV=firefox yarn _build:prod:zip",
|
|
"build:prod:zip:opera": "cross-env TARGET_ENV=opera yarn _build:prod:zip",
|
|
"build:prod:zip:all": "run-s 'build:prod:zip:@(chrome|firefox|opera)'",
|
|
"start": "web-ext run -s dist/firefox",
|
|
"start:android": "yarn start -t firefox-android",
|
|
"exec": "run-s build:firefox start",
|
|
"exec:prod": "run-s build:prod:firefox start",
|
|
"inspect": "cross-env NODE_ENV=production gulp inspect",
|
|
"update": "ncu --upgrade --upgradeAll && yarn",
|
|
"push": "git push --follow-tags origin master",
|
|
"release": "standard-version && yarn push"
|
|
},
|
|
"browserslist": [
|
|
"Chrome >= 55",
|
|
"Firefox >= 53",
|
|
"FirefoxAndroid >= 57",
|
|
"Opera >= 42"
|
|
],
|
|
"dependencies": {
|
|
"@material/theme": "^0.30.0",
|
|
"@material/typography": "^0.28.0",
|
|
"audiobuffer-to-wav": "^1.0.0",
|
|
"ext-components": "dessant/ext-components#^0.1.5",
|
|
"ext-contribute": "dessant/ext-contribute#^0.1.5",
|
|
"storage-versions": "dessant/storage-versions#^0.2.3",
|
|
"typeface-roboto": "^0.0.54",
|
|
"vue": "^2.5.17",
|
|
"webextension-polyfill": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0-rc.1",
|
|
"@babel/preset-env": "^7.0.0-rc.1",
|
|
"autoprefixer": "^9.1.1",
|
|
"babel-loader": "^8.0.0-beta.4",
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
"babel-preset-minify": "^0.4.3",
|
|
"babel-preset-stage-0": "^6.24.1",
|
|
"cross-env": "^5.2.0",
|
|
"css-loader": "^1.0.0",
|
|
"cssnano": "^4.0.5",
|
|
"dedent": "^0.7.0",
|
|
"del": "^3.0.0",
|
|
"fs-extra": "^7.0.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^8.0.0-beta.2",
|
|
"gulp-htmlmin": "^4.0.0",
|
|
"gulp-if": "^2.0.2",
|
|
"gulp-imagemin": "^4.1.0",
|
|
"gulp-jsonmin": "^1.1.0",
|
|
"gulp-merge-json": "^1.3.1",
|
|
"gulp-postcss": "^8.0.0",
|
|
"gulp-sequence": "^1.0.0",
|
|
"gulp-svgmin": "^1.2.4",
|
|
"lodash-webpack-plugin": "^0.11.5",
|
|
"mini-css-extract-plugin": "^0.4.1",
|
|
"node-sass": "4.7.2",
|
|
"npm-check-updates": "^2.14.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss-loader": "^3.0.0",
|
|
"recursive-readdir": "^2.2.2",
|
|
"sass-loader": "^7.1.0",
|
|
"sharp": "^0.20.5",
|
|
"standard-version": "^4.4.0",
|
|
"svg2png": "^4.1.1",
|
|
"vue-loader": "^15.3.0",
|
|
"vue-template-compiler": "^2.5.17",
|
|
"web-ext": "^2.8.0",
|
|
"webpack": "^4.16.5",
|
|
"webpack-bundle-analyzer": "^2.13.1",
|
|
"webpack-cli": "^3.1.0"
|
|
},
|
|
"private": true
|
|
}
|