CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json87 linesDownload Raw Back to math-intrinsics
1{2	"name": "math-intrinsics",3	"version": "1.1.0",4	"description": "ES Math-related intrinsics and helpers, robustly cached.",5	"main": false,6	"exports": {7		"./abs": "./abs.js",8		"./floor": "./floor.js",9		"./isFinite": "./isFinite.js",10		"./isInteger": "./isInteger.js",11		"./isNaN": "./isNaN.js",12		"./isNegativeZero": "./isNegativeZero.js",13		"./max": "./max.js",14		"./min": "./min.js",15		"./mod": "./mod.js",16		"./pow": "./pow.js",17		"./sign": "./sign.js",18		"./round": "./round.js",19		"./constants/maxArrayLength": "./constants/maxArrayLength.js",20		"./constants/maxSafeInteger": "./constants/maxSafeInteger.js",21		"./constants/maxValue": "./constants/maxValue.js",22		"./package.json": "./package.json"23	},24	"sideEffects": false,25	"scripts": {26		"prepack": "npmignore --auto --commentLines=autogenerated",27		"prepublishOnly": "safe-publish-latest",28		"prepublish": "not-in-publish || npm run prepublishOnly",29		"pretest": "npm run lint",30		"test": "npm run tests-only",31		"tests-only": "nyc tape 'test/**/*.js'",32		"posttest": "npx npm@'>= 10.2' audit --production",33		"prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",34		"lint": "eslint --ext=js,mjs .",35		"postlint": "tsc && attw -P",36		"version": "auto-changelog && git add CHANGELOG.md",37		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""38	},39	"repository": {40		"type": "git",41		"url": "git+https://github.com/es-shims/math-intrinsics.git"42	},43	"author": "Jordan Harband <ljharb@gmail.com>",44	"license": "MIT",45	"bugs": {46		"url": "https://github.com/es-shims/math-intrinsics/issues"47	},48	"homepage": "https://github.com/es-shims/math-intrinsics#readme",49	"devDependencies": {50		"@arethetypeswrong/cli": "^0.17.1",51		"@ljharb/eslint-config": "^21.1.1",52		"@ljharb/tsconfig": "^0.2.2",53		"@types/for-each": "^0.3.3",54		"@types/object-inspect": "^1.13.0",55		"@types/tape": "^5.8.0",56		"auto-changelog": "^2.5.0",57		"eclint": "^2.8.1",58		"es-value-fixtures": "^1.5.0",59		"eslint": "^8.8.0",60		"evalmd": "^0.0.19",61		"for-each": "^0.3.3",62		"in-publish": "^2.0.1",63		"npmignore": "^0.3.1",64		"nyc": "^10.3.2",65		"object-inspect": "^1.13.3",66		"safe-publish-latest": "^2.0.0",67		"tape": "^5.9.0",68		"typescript": "next"69	},70	"auto-changelog": {71		"output": "CHANGELOG.md",72		"template": "keepachangelog",73		"unreleased": false,74		"commitLimit": false,75		"backfillLimit": false,76		"hideCredit": true77	},78	"publishConfig": {79		"ignore": [80			".github/workflows"81		]82	},83	"engines": {84		"node": ">= 0.4"85	}86}87 
basant307/AI_Governance_Project · CoolFace