generated from fregante/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.2 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
{
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"lint": "run-p lint:*",
"lint-fix": "run-p \"lint:* -- --fix\"",
"lint:css": "stylelint src/**/*.css",
"lint:js": "xo",
"logo:mkdir": "mkdirp dist/logos",
"logo:export": "svgexport exportlogo.json",
"logo": "run-s logo:*",
"release": "VER=$(daily-version) run-s build version release:*",
"release:amo": "web-ext-submit --source-dir dist",
"release:cws": "webstore upload --source=dist --auto-publish",
"serve": "web-ext run --source-dir dist --verbose",
"start": "run-p watch serve",
"test": "run-s lint:* build",
"version": "dot-json dist/manifest.json version $VER",
"watch": "webpack --config webpack.dev.js --watch"
},
"xo": {
"envs": [
"browser"
],
"globals": [
"browser"
],
"ignores": [
"dist"
],
"rules": {
"import/no-unassigned-import": "off",
"no-cond-assign": "off"
},
"settings": {
"import/resolver": {
"node": {}
}
},
"webpack": true
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"dependencies": {
"bulma": "^0.9.1",
"dompurify": "^2.1.1",
"htm": "^3.0.4",
"javascript-debounce": "^1.0.1",
"tablesort": "^5.2.1",
"vhtml": "^2.2.0",
"webext-options-sync": "^0.21.2",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"babel-plugin-htm": "^3.0.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^4.3.0",
"daily-version": "^0.12.0",
"dot-json": "^1.1.0",
"eslint": "^7.6.0",
"eslint-config-xo": "^0.26.0",
"install": "^0.13.0",
"loader-utils": "^2.0.4",
"mini-css-extract-plugin": "^1.6.2",
"mkdirp": "^1.0.4",
"npm": "^6.14.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"size-plugin": "^1.2.0",
"stylelint": "^10.1.0",
"stylelint-config-xo": "^0.15.0",
"svgexport": "^0.4.1",
"terser-webpack-plugin": "^1.3.0",
"web-ext": "^4.1.0",
"web-ext-submit": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.6",
"webpack-merge": "^5.1.4",
"xo": "^0.33.1"
},
"sideEffects": [
"./src/js/add-table-sort.js"
]
}