-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 3.19 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
{
"name": "macros",
"version": "1.0.0",
"description": "define modifications to a page",
"main": "background.js",
"scripts": {
"build": "node ./copy-files.js && npm run build:sandbox-js && npm run build:background && npm run build:content-script && npm run build:devtools && npm run build:popup && npm run build:create-rule && npm run build:devtools-sidebar && npm run build:management",
"build-dev": "node ./copy-files.js -d && npm run build:sandbox-js-dev && npm run build:background-dev && npm run build:content-script-dev && npm run build:devtools-dev && npm run build:popup-dev && npm run build:create-rule-dev && npm run build:devtools-sidebar-dev && npm run build:management-dev",
"build:background": "npx webpack --config ./webpack.config.background.js",
"build:background-dev": "npx webpack --config ./webpack.config.background.js --mode development --devtool cheap-source-map",
"build:content-script": "npx webpack --config ./webpack.config.content-script.js",
"build:content-script-dev": "npx webpack --config ./webpack.config.content-script.js --mode development --devtool cheap-source-map",
"build:devtools": "npx webpack --config ./webpack.config.devtools.js",
"build:devtools-dev": "npx webpack --config ./webpack.config.devtools.js --mode development --devtool cheap-source-map",
"build:sandbox-js": "npx webpack --config ./webpack.config.sandbox.js",
"build:sandbox-js-dev": "npx webpack --config ./webpack.config.sandbox.js --mode development --devtool cheap-source-map",
"build:popup": "npx webpack --config ./webpack.config.popup.js",
"build:popup-dev": "npx webpack --config ./webpack.config.popup.js --mode development --devtool cheap-source-map",
"build:create-rule": "npx webpack --config ./webpack.config.create-rule.js",
"build:create-rule-dev": "npx webpack --config ./webpack.config.create-rule.js --mode development --devtool cheap-source-map",
"build:devtools-sidebar": "npx webpack --config ./webpack.config.devtools_sidebar.js",
"build:devtools-sidebar-dev": "npx webpack --config ./webpack.config.devtools_sidebar.js --mode development --devtool cheap-source-map",
"build:management": "npx webpack --config ./webpack.config.management.js",
"build:management-dev": "npx webpack --config ./webpack.config.management.js --mode development --devtool cheap-source-map",
"test": "jest",
"test-e2e": "jest --config=./test/e2e/jest-e2e.config.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilefokkema/macros.git"
},
"keywords": [
"chrome",
"extension",
"macro"
],
"author": "Emile Fokkema",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilefokkema/macros/issues"
},
"homepage": "https://github.com/emilefokkema/macros#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"http-server": "^14.1.0",
"jest": "^26.6.3",
"puppeteer": "^13.4.0",
"vue": "^2.6.12",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"ws": "^8.5.0",
"yargs": "^16.2.0"
},
"dependencies": {
"lz-string": "^1.4.4"
}
}