Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Bubova <bubova.leon@gmx.de>2021-12-15 01:13:20 +0300
committerLeon Bubova <bubova.leon@gmx.de>2021-12-15 12:14:17 +0300
commit7b9c1781b40f70a1e056eef4cb953141df331ada (patch)
tree385f67b1e93a975c6581aec40a6f72550feec7ed /package.json
parente39b52e8e725a0061e35e4a3fad5dd321c5bf4b3 (diff)
implement webpack and create scripts to bundle source
Diffstat (limited to 'package.json')
-rw-r--r--package.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6c0cb42
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "return-youtube-dislike",
+ "version": "2.0.0",
+ "description": "Chrome extension to return youtube dislikes",
+ "main": "ryd.content-script.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "bundle": "node_modules/.bin/webpack \"./Extensions/combined/ryd.content-script.js\" -o \"./Extensions/combined\""
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/Anarios/return-youtube-dislike.git"
+ },
+ "keywords": [
+ "youtube",
+ "dislike",
+ "return",
+ "extension"
+ ],
+ "author": "Anarios",
+ "bugs": {
+ "url": "https://github.com/Anarios/return-youtube-dislike/issues"
+ },
+ "homepage": "https://github.com/Anarios/return-youtube-dislike#readme",
+ "devDependencies": {
+ "babel-loader": "^8.2.3",
+ "babel-preset-es2015": "^6.24.1",
+ "babel-register": "^6.26.0",
+ "webpack": "^5.65.0",
+ "webpack-cli": "^4.9.1",
+ "webpack-dev-server": "^4.6.0"
+ }
+}