From 21ae8c8777d329ed83d8e2bdaae9323a042c77a6 Mon Sep 17 00:00:00 2001 From: Cristian Date: Tue, 18 Aug 2020 16:15:58 -0500 Subject: [PATCH] fix: Remove setup script from package.json --- package.json | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 08566ce7..f511a549 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,17 @@ { - "name": "archivebox", - "version": "0.4.14", - "description": "ArchiveBox: The self-hosted internet archive", - "author": "Nick Sweeting ", - "license": "MIT", - "scripts": { - "setup": "node -e \"const {execSync} = require('child_process'); Object.entries(JSON.parse(fs.readFileSync('package.json')).dependencies).forEach(globaldep => execSync('npm i -g ' + globaldep[1]))\"", - "archivebox": "./bin/archive" - }, - "bin": { - "archivebox": "./bin/archive" - }, - "dependencies": { - "readability-extractor": "git+https://github.com/pirate/readability-extractor.git", - "single-file": "git+https://github.com/gildas-lormeau/SingleFile.git" - } + "name": "archivebox", + "version": "0.4.14", + "description": "ArchiveBox: The self-hosted internet archive", + "author": "Nick Sweeting ", + "license": "MIT", + "scripts": { + "archivebox": "./bin/archive" + }, + "bin": { + "archivebox": "./bin/archive" + }, + "dependencies": { + "readability-extractor": "git+https://github.com/pirate/readability-extractor.git", + "single-file": "git+https://github.com/gildas-lormeau/SingleFile.git" + } }