“Zmień nazwę w pakiecie JSON z wiersza poleceń” Kod odpowiedzi

Zmień nazwę w pakiecie JSON z wiersza poleceń

cd some/node/project

# Get stuff from package.json
npe name
npe scripts
npe scripts.test
npe repository.url
open $(npe repository.url)

# Set stuff in package.json
npe name foo
npe scripts.start "node index.js"

# Keywords string will be turned into an array
# If commas are present, they'll be the delimiter. Otherwise spaces.
npe keywords "foo, bar, cheese whiz"
npe keywords "foo bar baz"

# The current working directory's package.json is used by default,
# but you can point to another package file with a flag:
npe name --package=some/other/package.json
npe name other --package=some/other/package.json
Horrible Hamerkop

Co to jest pakiet.json w węźle

All npm packages contain a file, usually in the project root, called package. json - this file holds various metadata relevant to the project. This file is used to give information to npm that allows it to identify the project as well as handle the project's dependencies.
Testy Tamarin

Odpowiedzi podobne do “Zmień nazwę w pakiecie JSON z wiersza poleceń”

Pytania podobne do “Zmień nazwę w pakiecie JSON z wiersza poleceń”

Więcej pokrewnych odpowiedzi na “Zmień nazwę w pakiecie JSON z wiersza poleceń” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu