microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/explain-repo-functionality

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/tests/Fixtures/Npm/with-dependencies-package.json

23lines · modecode

1{
2 "name": "test-package-with-deps",
3 "version": "2.0.0",
4 "description": "Test package with actual dependencies",
5 "dependencies": {
6 "lodash": "^4.17.21",
7 "express": "~4.18.2"
8 },
9 "devDependencies": {
10 "jest": "29.7.0",
11 "typescript": "*"
12 },
13 "peerDependencies": {
14 "react": ">=17.0.0"
15 },
16 "optionalDependencies": {
17 "fsevents": "^2.3.3"
18 },
19 "scripts": {
20 "build": "tsc",
21 "test": "jest"
22 }
23}
24