Organization!

This commit is contained in:
Leo Herzog
2020-11-17 14:25:15 -05:00
parent 096919ec30
commit 3d8efd6245
8 changed files with 5 additions and 5 deletions

View File

View File

View File

View File

@@ -1,8 +1,8 @@
{ {
"name": "torrentparts", "name": "torrentparts",
"version": "0.0.1", "version": "1.1",
"description": "📑 A website to inspect and edit Torrent files and Magnet URLs", "description": "📑 A website to inspect and edit Torrent files and Magnet URLs",
"main": "bundle.js", "main": "bin/bundle.js",
"dependencies": { "dependencies": {
"browserify": "latest", "browserify": "latest",
"Buffer": "latest", "Buffer": "latest",
@@ -20,9 +20,9 @@
"watchify": "latest" "watchify": "latest"
}, },
"scripts": { "scripts": {
"watch": "watchify parse.js -o bundle.js", "watch": "watchify src/parse.js -o bin/bundle.js",
"compile": "browserify parse.js -o bundle.js", "compile": "browserify src/parse.js -o bin/bundle.js",
"minify": "terser bundle.js -c -m -o bundle.min.js", "minify": "terser bin/bundle.js -c -m -o bin/bundle.min.js",
"build": "npm run compile && npm run minify" "build": "npm run compile && npm run minify"
}, },
"repository": { "repository": {

0
src/sw.js Normal file
View File