-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"private": true,
"scripts": {
"build": "webpack --mode=production",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint source/**/*.css",
"lint:js": "xo",
"release:chrome": "cd distribution && webstore upload --auto-publish",
"release:firefox": "cd distribution && web-ext-submit",
"test": "run-s lint:* build",
"watch": "webpack --mode=development --watch"
},
"xo": {
"envs": [
"browser"
],
"globals": [
"browser"
],
"ignores": [
"distribution"
]
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"dependencies": {
"delay": "^4.4.0",
"dom-loaded": "^2.0.0",
"element-ready": "^4.1.1",
"webext-options-sync": "^0.21.2",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.1.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^5.0.3",
"daily-version": "^0.12.0",
"dot-json": "^1.1.0",
"eslint": "^6.1.0",
"eslint-config-xo": "^0.26.0",
"npm-run-all": "^4.1.5",
"size-plugin": "^1.2.0",
"stylelint": "^10.1.0",
"stylelint-config-xo": "^0.15.0",
"terser-webpack-plugin": "^1.3.0",
"web-ext": "^4.1.0",
"web-ext-submit": "^4.1.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"xo": "^0.24.0"
}
}