feat(nodejs): support package.json (#1225)

Co-authored-by: knqyf263 <knqyf263@gmail.com>
This commit is contained in:
Ankush K
2021-09-15 16:53:35 +05:30
committed by GitHub
parent 31c45ffc52
commit 8edcc62a8d
7 changed files with 17 additions and 7 deletions

View File

@@ -6,14 +6,15 @@
|---------|-------------------------|:---------:|:--------------:|:---------------:|-----------------|
| Ruby | Gemfile.lock | - | ✅ | ✅ | included |
| | gemspec | ✅ | ✅ | - | included |
| Python | Pipfile.lock | - | ✅ | ✅ |excluded |
| Python | Pipfile.lock | - | ✅ | ✅ | excluded |
| | poetry.lock | - | ✅ | ✅ | included |
| | requirements.txt | - | ✅ | ✅ | included |
| | egg package[^1] | ✅ | ✅ | - | excluded |
| | wheel package[^2] | ✅ | ✅ | - | excluded |
| PHP | composer.lock | ✅ | ✅ | ✅ | excluded |
| Node.js | package-lock.json | | ✅ | ✅ | excluded |
| | yarn.lock | | ✅ | ✅ | ncluded |
| Node.js | package-lock.json | - | ✅ | ✅ | excluded |
| | yarn.lock | - | ✅ | ✅ | included |
| | package.json | ✅ | ✅ | - | excluded |
| .NET | packages.lock.json | ✅ | ✅ | ✅ | included |
| Java | JAR/WAR/EAR[^3][^4] | ✅ | ✅ | ✅ | included |
| Go | Binaries built by Go[^5] | ✅ | ✅ | - | excluded |