我不知道,
npm config set <key> <value>
.npmrc
文件但是,为了更改package.json中字段的值,您必须使用CLI工具来处理json,例如
json
.
npm install -g json
json -I -f package.json -e 'this.private=true'
或者,如果要在本地安装软件包,请改为:
./node_modules/.bin/json -I -f package.json -e 'this.private=true'
笔记
:对于窗口用户,请在必要时使用双引号和转义,例如
here
希望这有帮助!