-
Notifications
You must be signed in to change notification settings - Fork 1
/
.npmrc
35 lines (24 loc) · 786 Bytes
/
.npmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Perform audits alongside installs.
audit = true
# Minimum audit-level for vulnerability reports.
audit-level = true
# Use colors in the CLI for tty descriptors.
color = true
# Create commits with the new tags when versioning.
git-tag-version = true
# Run commit hooks when versioning.
commit-hooks = true
# Show all non-silent errors.
loglevel = "error"
# Default commit message used when versioning.
message = "Production Release: %s"
# Install all "optional" dependencies.
optional = true
# Generate/update the lock-file when installing.
package-lock = true
# Show the progress bar during installs for tty's.
progress = true
# Save dependencies with the exact version by default.
save-exact = true
# Prefix git tags with `vN.N.N` when versioning.
tag-version-prefix = "v"