X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs14/root/usr/lib/node_modules/npm
opt
/
alt
/
alt-nodejs14
/
root
/
usr
/
lib
/
node_modules
/
npm
/
ðŸ“
..
📄
.licensee.json
(245 B)
📄
.mailmap
(3.2 KB)
📄
.npmignore
(368 B)
📄
.npmrc
(0 B)
📄
.travis.yml
(269 B)
📄
AUTHORS
(26.51 KB)
📄
CHANGELOG.md
(157.83 KB)
📄
CONTRIBUTING.md
(9.29 KB)
📄
LICENSE
(9.51 KB)
📄
Makefile
(4.02 KB)
📄
README.md
(4.39 KB)
ðŸ“
bin
ðŸ“
changelogs
📄
configure
(529 B)
ðŸ“
lib
📄
make.bat
(156 B)
ðŸ“
man
ðŸ“
node_modules
ðŸ“
node_modules.bundled
📄
package.json
(7.89 KB)
ðŸ“
scripts
ðŸ“
tap-snapshots
Editing: configure
#!/usr/bin/env bash # set configurations that will be "sticky" on this system, # surviving npm self-updates. CONFIGS=() i=0 # get the location of this file. unset CDPATH CONFFILE=$(cd $(dirname "$0"); pwd -P)/npmrc while [ $# -gt 0 ]; do conf="$1" case $conf in --help) echo "./configure --param=value ..." exit 0 ;; --*) CONFIGS[$i]="${conf:2}" ;; *) CONFIGS[$i]="$conf" ;; esac let i++ shift done for c in "${CONFIGS[@]}"; do echo "$c" >> "$CONFFILE" done
Upload File
Create Folder