X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs12/root/usr/lib/node_modules/npm
opt
/
alt
/
alt-nodejs12
/
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.26 KB)
??
CONTRIBUTING.md
(9.29 KB)
??
LICENSE
(9.51 KB)
??
Makefile
(4.02 KB)
??
README.md
(4.39 KB)
??
bin
??
changelogs
??
configure
(525 B)
??
docs
??
lib
??
make.bat
(156 B)
??
man
??
node_modules
??
node_modules.bundled
??
package.json
(7.84 KB)
??
scripts
??
tap-snapshots
Editing: configure
#!/usr/bin/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