idx
Version:
Utility function for traversing properties on objects and arrays.
40 lines (39 loc) • 1.02 kB
JSON
{
"name": "idx",
"version": "3.0.0",
"description": "Utility function for traversing properties on objects and arrays.",
"main": "lib/idx.js",
"types": "lib/idx.d.ts",
"files": [
"README.md",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/facebook/idx.git",
"directory": "packages/idx"
},
"license": "MIT",
"scripts": {
"build": "scripts/build.sh",
"prepublish": "yarn run build && cp ../../README.md .",
"test": "jest idx.test.js && yarn run tsc",
"tsc": "tsc --noEmit --strict src/idx.test.ts",
"upgrade": "yarn upgrade --latest"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-transform-flow-strip-types": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"babel-jest": "^29.5.0",
"flow-bin": "^0.211.0",
"jest": "^29.5.0",
"typescript": "^5.0.4"
},
"jest": {
"testEnvironment": "node",
"rootDir": "src"
}
}