CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json99 linesDownload Raw Back to glob
1{2  "author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me/)",3  "name": "glob",4  "description": "the most correct and second fastest glob implementation in JavaScript",5  "version": "13.0.6",6  "type": "module",7  "tshy": {8    "exports": {9      "./package.json": "./package.json",10      "./raw": "./src/index.ts",11      ".": {12        "import": {13          "types": "./dist/esm/index.d.ts",14          "default": "./dist/esm/index.min.js"15        },16        "require": {17          "types": "./dist/commonjs/index.d.ts",18          "default": "./dist/commonjs/index.min.js"19        }20      }21    }22  },23  "main": "./dist/commonjs/index.min.js",24  "module": "./dist/esm/index.min.js",25  "types": "./dist/commonjs/index.d.ts",26  "exports": {27    "./package.json": "./package.json",28    "./raw": {29      "import": {30        "types": "./dist/esm/index.d.ts",31        "default": "./dist/esm/index.js"32      },33      "require": {34        "types": "./dist/commonjs/index.d.ts",35        "default": "./dist/commonjs/index.js"36      }37    },38    ".": {39      "import": {40        "types": "./dist/esm/index.d.ts",41        "default": "./dist/esm/index.min.js"42      },43      "require": {44        "types": "./dist/commonjs/index.d.ts",45        "default": "./dist/commonjs/index.min.js"46      }47    }48  },49  "repository": {50    "type": "git",51    "url": "git@github.com:isaacs/node-glob.git"52  },53  "files": [54    "dist"55  ],56  "scripts": {57    "preversion": "npm test",58    "postversion": "npm publish",59    "prepublishOnly": "npm run benchclean; git push origin --follow-tags",60    "prepare": "tshy && bash scripts/build.sh",61    "pretest": "npm run prepare",62    "presnap": "npm run prepare",63    "test": "tap",64    "snap": "tap",65    "format": "prettier --write . --log-level warn",66    "typedoc": "typedoc",67    "profclean": "rm -f v8.log profile.txt",68    "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts",69    "prebench": "npm run prepare",70    "bench": "bash benchmark.sh",71    "preprof": "npm run prepare",72    "prof": "bash prof.sh",73    "benchclean": "node benchclean.cjs"74  },75  "dependencies": {76    "minimatch": "^10.2.2",77    "minipass": "^7.1.3",78    "path-scurry": "^2.0.2"79  },80  "devDependencies": {81    "@types/node": "^25.3.0",82    "esbuild": "^0.27.3",83    "memfs": "^4.50.0",84    "mkdirp": "^3.0.1",85    "prettier": "^3.6.2",86    "rimraf": "^6.1.3",87    "tap": "^21.6.1",88    "tshy": "^3.3.2",89    "typedoc": "^0.28.17"90  },91  "license": "BlueOak-1.0.0",92  "funding": {93    "url": "https://github.com/sponsors/isaacs"94  },95  "engines": {96    "node": "18 || 20 || >=22"97  }98}99 
basant307/AI_Governance_Project · CoolFace