Add minimist dep to package.json (#1522)

Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1522

I have the types but not the core

Reviewed By: NickGerleman

Differential Revision: D52216588

fbshipit-source-id: ec348537655213f6d8a3b35402fec03998744c78
This commit is contained in:
Joe Vilches
2023-12-15 16:26:31 -08:00
committed by Facebook GitHub Bot
parent 7aee99567a
commit bac80cafba
2 changed files with 6 additions and 5 deletions

View File

@@ -8,16 +8,17 @@
},
"type": "module",
"dependencies": {
"minimist": "^1.2.8",
"selenium-webdriver": "^4.16.0",
"signedsource": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/selenium-webdriver": "^4.1.21",
"babel-register-esm": "^1.2.5",
"@babel/core": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@tsconfig/node18": "^18.2.2",
"@types/minimist": "^1.2.5"
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.3",
"@types/selenium-webdriver": "^4.1.21",
"babel-register-esm": "^1.2.5"
}
}