forked from reorx/webpack-ext-reloader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.64 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@reorx/webpack-ext-reloader",
"version": "1.3.0",
"private": false,
"description": "Watch for file changes and reload WebExtensions on browsers.",
"main": "dist/webpack-ext-reloader.js",
"bin": "./dist/webpack-ext-reloader-cli.js",
"types": "typings/webpack-ext-reloader.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/SimplifyJobs/webpack-ext-reloader.git"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "NODE_ENV=test webpack && mocha dist/tests.js",
"analyze": "NODE_ENV=production webpack --env.analyze",
"start:dev": "NODE_ENV=development webpack --watch",
"start:sample:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --config sample/webpack.plugin.js --watch",
"start:sample:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --config sample/webpack.plugin.js --watch",
"prepublishOnly": "npm run build",
"lint": "eslint \"{src,client,typings,specs}/**/*.ts\" --fix --format codeframe",
"format": "prettier --write \"{src,client,typings,specs}/**/*.ts\"",
"lint:files": "eslint --fix --format codeframe",
"format:files": "prettier --write"
},
"author": "Rubens Pinheiro Gonçalves Cavalcante",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimplifyJobs/webpack-ext-reloader/issues"
},
"homepage": "https://github.com/SimplifyJobs/webpack-ext-reloader#readme",
"keywords": [
"webpack",
"plugin",
"browser",
"extension",
"WebExtensions",
"hot-reload"
],
"dependencies": {
"@kingyue/useragent": "^2.4.0",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^3.2.0",
"clean-webpack-plugin": "^4.0.0",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"webpack-sources": "^3.2.3",
"ws": "^8.4.2"
},
"peerDependencies": {
"webpack": "^5.61.0"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "7.18.9",
"@babel/plugin-proposal-object-rest-spread": "7.20.2",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-regenerator": "7.18.6",
"@babel/preset-env": "7.20.2",
"@types/chai": "4.3.4",
"@types/chrome": "^0.0.217",
"@types/lodash": "4.14.188",
"@types/minimist": "1.2.2",
"@types/mocha": "9.1.1",
"@types/sinon": "10.0.13",
"@types/useragent": "2.3.1",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"autoprefixer": "10.4.13",
"babel-loader": "8.3.0",
"chai": "4.3.7",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"eslint": "8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "4.3.8",
"json-loader": "0.5.7",
"lint-staged": "12.5.0",
"mini-css-extract-plugin": "2.6.1",
"mocha": "9.2.2",
"prettier": "2.6.1",
"raw-loader": "4.0.2",
"sinon": "13.0.2",
"source-map-support": "0.5.21",
"style-loader": "3.3.1",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0"
}
}