Files
yoga/gentest/package.json
Joe Vilches fba32ebf14 Add command line options to new node-based gentest (#1499)
Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1499

This uses the minimist library to parse the command line easily for flags and options. I added over the same ones in the ruby script (-f and -s).

Reviewed By: yungsters, NickGerleman

Differential Revision: D51877810

fbshipit-source-id: 643606cad25609ed2567bb63470818b81ebef531
2023-12-14 11:48:22 -08:00

22 lines
515 B
JSON

{
"name": "gentest",
"version": "0.0.0",
"private": true,
"scripts": {
"gentest": "node --loader=babel-register-esm ./gentest-driver.ts"
},
"type": "module",
"dependencies": {
"selenium-webdriver": "^4.16.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"
}
}