CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json44 linesDownload Raw Back to load-json-file
1{2  "name": "load-json-file",3  "version": "4.0.0",4  "description": "Read and parse a JSON file",5  "license": "MIT",6  "repository": "sindresorhus/load-json-file",7  "author": {8    "name": "Sindre Sorhus",9    "email": "sindresorhus@gmail.com",10    "url": "sindresorhus.com"11  },12  "engines": {13    "node": ">=4"14  },15  "scripts": {16    "test": "xo && ava"17  },18  "files": [19    "index.js"20  ],21  "keywords": [22    "read",23    "json",24    "parse",25    "file",26    "fs",27    "graceful",28    "load"29  ],30  "dependencies": {31    "graceful-fs": "^4.1.2",32    "parse-json": "^4.0.0",33    "pify": "^3.0.0",34    "strip-bom": "^3.0.0"35  },36  "devDependencies": {37    "ava": "*",38    "xo": "*"39  },40  "xo": {41    "esnext": true42  }43}44 
basant307/AI_Governance_Project · CoolFace