aboutsummaryrefslogtreecommitdiff
path: root/npm
diff options
context:
space:
mode:
Diffstat (limited to 'npm')
-rw-r--r--npm/npmrc17
1 files changed, 17 insertions, 0 deletions
diff --git a/npm/npmrc b/npm/npmrc
index 539a900..98fedfe 100644
--- a/npm/npmrc
+++ b/npm/npmrc
@@ -1,11 +1,28 @@
1; ~/.npmrc
2
3; default registry
4registry=https://registry.npmjs.org/
5
1; local packages: "npm install -g foo-bar" 6; local packages: "npm install -g foo-bar"
2prefix=${HOME}/.local 7prefix=${HOME}/.local
3 8
4; disable fund-spam 9; disable fund-spam
5fund=false 10fund=false
6 11
12; suppresses notifications about new npm versions
13update-notifier=false
14
7; reduce the attack surface for supply chain attacks 15; reduce the attack surface for supply chain attacks
8min-release-age=3 16min-release-age=3
9 17
10; disable pre- und post-scripts 18; disable pre- und post-scripts
11ignore-scripts=true 19ignore-scripts=true
20
21; make sure to enable security checks
22audit=true
23
24; adjust log level
25loglevel=notice
26
27
28; vim: ft=dosini