Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
node_modules /
npm /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
changelog.js
2.89
KB
-rw-r--r--
2017-11-03 01:22
clean-old.sh
4.16
KB
-rwxr-xr-x
2016-10-13 09:50
dep-update
167
B
-rwxr-xr-x
2017-11-03 01:22
dev-dep-update
161
B
-rwxr-xr-x
2017-11-03 01:22
doc-build.sh
1.96
KB
-rwxr-xr-x
2017-11-03 01:22
gen-changelog
420
B
-rwxr-xr-x
2017-11-03 01:22
index-build.js
1.66
KB
-rwxr-xr-x
2017-11-03 01:22
install.sh
5.32
KB
-rwxr-xr-x
2017-11-03 01:22
maketest
2
KB
-rwxr-xr-x
2017-11-03 01:22
publish-tag.js
151
B
-rw-r--r--
2017-11-03 01:22
release.sh
681
B
-rw-r--r--
2017-11-03 01:22
relocate.sh
665
B
-rwxr-xr-x
2016-10-13 09:50
update-authors.sh
183
B
-rwxr-xr-x
2017-09-28 04:27
Save
Rename
#!/bin/bash # script for creating a zip and tarball for inclusion in node unset CDPATH set -e rm -rf release *.tgz || true mkdir release node ./bin/npm-cli.js pack --loglevel error >/dev/null mv *.tgz release cd release tar xzf *.tgz mkdir node_modules mv package node_modules/npm # make the zip for windows users cp node_modules/npm/bin/*.cmd . zipname=npm-$(node ../bin/npm-cli.js -v).zip zip -q -9 -r -X "$zipname" *.cmd node_modules # make the tar for node's deps cd node_modules tarname=npm-$(node ../../bin/npm-cli.js -v).tgz tar czf "$tarname" npm cd .. mv "node_modules/$tarname" . rm -rf *.cmd rm -rf node_modules echo "release/$tarname" echo "release/$zipname"