CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json47 linesDownload Raw Back to outvariant
1{2  "name": "outvariant",3  "version": "1.4.3",4  "description": "Type-safe implementation of invariant with positionals.",5  "main": "lib/index.js",6  "module": "lib/index.mjs",7  "typings": "lib/index.d.ts",8  "exports": {9    ".": {10      "types": "./lib/index.d.ts",11      "require": "./lib/index.js",12      "default": "./lib/index.mjs"13    }14  },15  "author": "Artem Zakharchenko",16  "license": "MIT",17  "scripts": {18    "test": "jest",19    "clean": "rimraf ./lib",20    "build": "yarn clean && tsup",21    "prepublishOnly": "yarn test && yarn build",22    "release": "release publish"23  },24  "files": [25    "lib"26  ],27  "keywords": [28    "invariant",29    "outvariant",30    "exception",31    "positional"32  ],33  "devDependencies": {34    "@ossjs/release": "^0.8.0",35    "@types/jest": "^26.0.23",36    "jest": "^27.0.6",37    "rimraf": "^3.0.2",38    "ts-jest": "^27.0.3",39    "ts-node": "^10.0.0",40    "tsup": "^6.2.3",41    "typescript": "^4.3.4"42  },43  "repository": {44    "type": "git",45    "url": "https://github.com/open-draft/outvariant"46  }47}
basant307/AI_Governance_Project · CoolFace