-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy path.npmrc
48 lines (34 loc) · 1.3 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
# # Set the registry to your Artifactory registry over HTTPS
# registry=https://your-artifactory-url/npm/repository/npm-group/
# # Specify the CA file for HTTPS requests (replace /path/to/your/cafile.pem with the actual path)
# cafile=/path/to/your/cafile.pem
# # Specify authentication details (replace placeholders with your actual credentials)
# //your-artifactory-url/npm/repository/npm-group/:_authToken=your-auth-token
# # Other configuration options
# progress=false
# loglevel=info
# # Set a custom cache directory for npm packages
# cache=/path/to/your/npm-cache
# # Specify the location for storing global npm packages
# prefix=/path/to/global/npm-packages
# # Use a specific Node.js version
# engine-strict=true
# engine-0.12=false
# engine-4=true
# # Disable package-lock creation
# package-lock=false
# # Use a custom user-agent string
# user-agent=my-custom-user-agent
# # Set the default script to run on "npm start"
# start=custom-start-script
# # Disable SSL for a specific registry (if needed)
# registry=http://insecure-registry-url/
# # Set proxy configurations
# proxy=http://proxy.example.com:8080/
# https-proxy=http://proxy.example.com:8080/
# # Ignore SSL errors
# strict-ssl=false
# # Set the timeout for HTTP requests
# timeout=60000
# # Set the number of concurrent connections
# maxsockets=8