X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs11/root/usr/lib/node_modules/npm
opt
/
alt
/
alt-nodejs11
/
root
/
usr
/
lib
/
node_modules
/
npm
/
ðŸ“
..
📄
.licensee.json
(267 B)
📄
.mailmap
(3.11 KB)
📄
.npmignore
(324 B)
📄
.travis.yml
(1.25 KB)
📄
AUTHORS
(22.99 KB)
📄
CHANGELOG.md
(82.22 KB)
📄
CONTRIBUTING.md
(4.38 KB)
📄
LICENSE
(9.51 KB)
📄
Makefile
(5.48 KB)
📄
README.md
(4.59 KB)
📄
appveyor.yml
(959 B)
ðŸ“
bin
ðŸ“
changelogs
📄
configure
(521 B)
ðŸ“
html
ðŸ“
lib
📄
make.bat
(156 B)
ðŸ“
man
ðŸ“
node_modules
ðŸ“
node_modules.bundled
📄
package.json
(7.36 KB)
ðŸ“
scripts
Editing: configure
#!/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