This repository has been archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
95 lines (95 loc) · 2.87 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
{
"name": "webpack-chrome-extension-reloader",
"version": "1.3.0",
"private": false,
"description": "Watch for changes and force the reload of the chrome extension",
"main": "dist/webpack-chrome-extension-reloader.js",
"bin": {
"wcer": "./dist/wcer.js"
},
"types": "typings/webpack-chrome-extension-reloader.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/rubenspgcavalcante/webpack-chrome-extension-reloader.git"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"pre-push": "yarn test"
}
},
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "NODE_ENV=test webpack && mocha dist/tests.js",
"watch": "NODE_ENV=development webpack --watch",
"analyze": "NODE_ENV=production webpack --env.analyze",
"sample": "NODE_ENV=development webpack --config sample/webpack.plugin.js --watch",
"prepublish": "yarn build",
"format": "prettier --write \"{src,client}/**/*.ts\""
},
"author": "Rubens Pinheiro Gonçalves Cavalcante",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubenspgcavalcante/webpack-chrome-extension-reloader/issues"
},
"homepage": "https://github.com/rubenspgcavalcante/webpack-chrome-extension-reloader#readme",
"keywords": [
"webpack",
"plugin",
"chrome",
"extension",
"hot-reload"
],
"dependencies": {
"colors": "^1.1.2",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"webpack-sources": "^1.0.1",
"ws": "^7.0.0"
},
"peerDependencies": {
"webpack": ">=2 <5"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/chai": "^4.0.0",
"@types/chrome": "^0.0.83",
"@types/colors": "^1.1.3",
"@types/lodash": "^4.14.120",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.0",
"@types/webpack": "^4.4.27",
"@types/ws": "^6.0.1",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.0",
"chai": "^4.0.2",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.0.0",
"husky": "^2.0.0",
"json-loader": "^0.5.4",
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.1.1",
"prettier": "^1.8.2",
"raw-loader": "^2.0.0",
"sinon": "^7.1.1",
"source-map-support": "^0.5.9",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.2.1",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
}
}