Files
yoga/gentest/package.json
Joe Vilches bac80cafba 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
2023-12-15 16:26:31 -08:00

25 lines
653 B
JSON

{
"name": "gentest",
"version": "0.0.0",
"private": true,
"scripts": {
"gentest": "node --loader=babel-register-esm ./gentest-driver.ts",
"gentest-validate": "node --loader=babel-register-esm ./gentest-validate.ts"
},
"type": "module",
"dependencies": {
"minimist": "^1.2.8",
"selenium-webdriver": "^4.16.0",
"signedsource": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@tsconfig/node18": "^18.2.2",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.3",
"@types/selenium-webdriver": "^4.1.21",
"babel-register-esm": "^1.2.5"
}
}