CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json46 linesDownload Raw Back to boundary
1{2  "name": "boundary",3  "version": "2.0.0",4  "description": "Provides boundary functions, (upper-bound and lower-bound).",5  "keywords": [6    "algorithm"7  ],8  "homepage": "https://github.com/textlint/boundary",9  "bugs": {10    "url": "https://github.com/textlint/boundary/issues"11  },12  "repository": {13    "type": "git",14    "url": "https://github.com/textlint/boundary.git"15  },16  "license": "BSD-2-Clause",17  "author": "Yusuke SUZUKI",18  "maintainers": [19    {20      "name": "Yusuke SUZUKI",21      "email": "utatane.tea@gmail.com",22      "web": "http://github.com/Constellation"23    }24  ],25  "main": "lib/index.js",26  "types": "lib/index.d.ts",27  "files": [28    "lib"29  ],30  "scripts": {31    "build": "tsc -p .",32    "prepublishOnly": "npm run build",33    "test": "mocha \"test/**/*.{js,ts}\"",34    "watch": "tsc -p . --watch"35  },36  "devDependencies": {37    "@types/mocha": "^10.0.1",38    "@types/node": "^18.11.18",39    "mocha": "^10.2.0",40    "ts-node": "^10.9.1",41    "ts-node-test-register": "^10.0.0",42    "typescript": "^4.9.4"43  },44  "packageManager": "npm@8.19.2"45}46 
basant307/AI_Governance_Project · CoolFace