forked from cloudbuy/modheader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.06 KB
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
{
"name": "modheader-chrome-extension",
"version": "4.0.0",
"description": "ModHeader chrome extension",
"type": "module",
"scripts": {
"postinstall": "npm run smui-theme-light && npm run smui-theme-dark",
"test": "jest",
"test-e2e": "jest -c jest.e2e.config.js",
"test-e2e:update-snapshot": "jest -c jest.e2e.config.js --updateSnapshot",
"smui-theme-light": "sass --no-source-map -I node_modules theme/_smui-theme.scss src/styles/smui.css",
"smui-theme-dark": "sass --no-source-map -I node_modules theme/dark/_smui-theme.scss src/styles/smui-dark.css",
"build-chrome": "cross-env NODE_ENV=production BROWSER=chrome rollup -c",
"build-firefox": "cross-env NODE_ENV=production BROWSER=firefox rollup -c",
"build-opera": "cross-env NODE_ENV=production BROWSER=opera rollup -c",
"build-edge": "cross-env NODE_ENV=production BROWSER=edge rollup -c",
"build-all": "node build-all.js",
"build-webdriver-chrome": "cross-env NODE_ENV=production WEB_DRIVER=true BROWSER=chrome rollup -c",
"build-webdriver-firefox": "cross-env NODE_ENV=production WEB_DRIVER=true BROWSER=firefox rollup -c",
"start-webdriver": "cross-env NODE_ENV=development WEB_DRIVER=true BROWSER=chrome rollup -c",
"start": "cross-env NODE_ENV=development BROWSER=chrome rollup -c -w",
"start-firefox": "cross-env NODE_ENV=development BROWSER=firefox rollup -c -w"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@mdi/js": "^6.5.95",
"@modheader/core": "1.0.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@smui-extra/badge": "^6.0.0",
"@smui/button": "^6.0.0",
"@smui/checkbox": "^6.0.0",
"@smui/chips": "^6.0.0",
"@smui/dialog": "^6.0.0",
"@smui/drawer": "^6.0.0",
"@smui/form-field": "^6.0.0",
"@smui/icon-button": "^6.0.0",
"@smui/linear-progress": "^6.0.0",
"@smui/list": "^6.0.0",
"@smui/menu": "^6.0.0",
"@smui/menu-surface": "^6.0.0",
"@smui/snackbar": "^6.0.0",
"@smui/tab": "^6.0.0",
"@smui/tab-bar": "^6.0.0",
"@smui/textfield": "^6.0.0",
"@smui/top-app-bar": "^6.0.0",
"babel-jest": "^27.5.1",
"bluebird": "^3.7.2",
"chromedriver": "^104.0.0",
"cookie": "^0.5.0",
"cross-env": "^6.0.3",
"crx": "^5.0.1",
"flush-promises": "^1.0.2",
"jest": "^27.5.1",
"jest-image-snapshot": "^4.5.1",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"polka": "^0.5.2",
"rollup": "^2.68.0",
"rollup-plugin-chrome-extension": "^3.6.9",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-empty-dir": "^1.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-zip": "^1.0.3",
"sass": "^1.49.9",
"selenium-webdriver": "^4.1.1",
"set-cookie-parser": "^2.4.8",
"svelte": "^3.49.0",
"svelte-preprocess-cssmodules": "^2.2.0"
},
"workspaces": [
"../modheader-core"
],
"main": "build-all.js",
"author": "",
"license": "ISC"
}