forked from dessant/buster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·93 lines (93 loc) · 3.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "buster",
"version": "0.6.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:prod:@(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 && yarn",
"push": "git push --follow-tags origin master",
"release": "standard-version"
},
"browserslist": [
"Chrome >= 55",
"Firefox >= 53",
"FirefoxAndroid >= 57",
"Opera >= 42"
],
"dependencies": {
"@material/theme": "^1.1.0",
"@material/typography": "^1.0.0",
"audiobuffer-to-wav": "^1.0.0",
"bowser": "^2.4.0",
"ext-components": "dessant/ext-components#^0.2.1",
"ext-contribute": "dessant/ext-contribute#^0.2.1",
"storage-versions": "dessant/storage-versions#^0.2.5",
"typeface-roboto": "^0.0.54",
"uuid": "^3.3.2",
"vue": "^2.6.10",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-minify": "^0.5.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"del": "^4.1.1",
"fs-extra": "^8.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^6.0.0",
"gulp-jsonmin": "^1.2.0",
"gulp-merge-json": "^1.3.1",
"gulp-postcss": "^8.0.0",
"gulp-svgmin": "^2.2.0",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "4.12.0",
"npm-check-updates": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"recursive-readdir": "^2.2.2",
"sass-loader": "^7.1.0",
"sharp": "^0.22.1",
"standard-version": "^6.0.1",
"svg2png": "^4.1.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"web-ext": "^3.0.0",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3"
},
"private": true
}