-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (41 loc) · 1.65 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
{
"name": "black-friday",
"version": "1.0.0",
"description": "Black Friday",
"scripts": {
"manifest-v2": "target=v2 node ./scripts/generateManifests.js",
"manifest-v3": "target=v3 node ./scripts/generateManifests.js",
"start-v2": "web-ext run --source-dir ./dist/v2",
"start-v3": "web-ext run --source-dir ./dist/v3",
"build-ext-v2": "web-ext build --overwrite-dest --source-dir ./dist/v2 --artifacts-dir ./dist/artifacts_v2",
"build-ext-v3": "web-ext build --overwrite-dest --source-dir ./dist/v3 --artifacts-dir ./dist/artifacts_v3",
"build-v2": "target=v2 mode=production webpack && npm run manifest-v2 && npm run build-ext-v2",
"build-v3": "target=v3 mode=production webpack && npm run manifest-v3 && npm run build-ext-v3",
"test": "echo \"Error: no test specified\" && exit 1",
"manifests": "npm run manifest-v2 && npm run manifest-v3",
"build-ext": "npm run build-ext-v2 && npm run build-ext-v3",
"build": "npm run build-v2 && npm run build-v3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/les-enovateurs/black-friday.git"
},
"author": "les-enovateurs",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/les-enovateurs/black-friday/issues"
},
"homepage": "https://github.com/les-enovateurs/black-friday#readme",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"web-ext": "^7.8.0",
"web-ext-plugin": "^2.9.0",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}