generated from fregante/browser-extension-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 966 Bytes
/
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
{
"private": true,
"scripts": {
"build": "parcel build source/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"lint": "xo",
"fix": "xo --fix",
"test": "run-p lint build",
"watch": "parcel watch source/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"xo": {
"envs": [
"browser",
"webextensions"
]
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"devDependencies": {
"@parcel/config-webextension": "^2.6.2",
"@types/chrome": "^0.0.248",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.2",
"xo": "^0.56.0"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"startUrl": [
"https://github.com/fregante/jdm"
]
}
},
"@parcel/bundler-default-bug": "https://github.com/parcel-bundler/parcel/issues/8071",
"@parcel/bundler-default": {
"minBundles": 10000000
}
}