-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.npmignore
More file actions
89 lines (75 loc) · 948 Bytes
/
.npmignore
File metadata and controls
89 lines (75 loc) · 948 Bytes
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Source files not needed for npm package
tests_archive/
test_*.py
validate_*.py
VALIDATION_REPORT.md
*.test.js
*.spec.js
__pycache__/
*.py[cod]
*$py.class
# Development files
.env
.env.*
!.env.example
.venv/
venv/
env/
# Git and CI files
.git/
.github/
.gitignore
.travis.yml
.gitlab-ci.yml
appveyor.yml
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Documentation source files
docs/
doc/
# Build artifacts
build/
dist/
*.egg-info/
# Development dependencies
requirements-dev.txt
requirements-test.txt
# Example/demo files
examples/
demo/
# Coverage reports
.coverage
htmlcov/
coverage.xml
# Logs
*.log
logs/
# Temporary files
*.tmp
*.temp
.tmp/
# Data files
*.json
!package.json
!package-lock.json
# Python cache
.pytest_cache/
.mypy_cache/
.tox/
# Keep only necessary files for npm package
!mcp_server_bwt/
!pyproject.toml
!README.md
!LICENSE
!CHANGELOG.md
!SECURITY.md
!run.js
!.env.example
!scripts/