UNPKG

hash-maker

Version:

A collection of hash and number generators for Node or Browser

57 lines (56 loc) 1.49 kB
{ "name": "hash-maker", "version": "1.0.13", "description": "A collection of hash and number generators for Node or Browser", "module": "lib/esm/index.js", "main": "lib/cjs/index.js", "files": [ "lib" ], "repository": { "type": "git", "url": "git+https://github.com/hearhellacopters/hash-maker.git" }, "exports": { ".": { "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" }, "./*": "./*" }, "scripts": { "clean": "rmdir /S /Q lib", "build_clean": "npm run clean && npm run build:esm && npm run build:cjs", "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run movem && npm run movec", "build:esm": "tsc --moduleResolution NodeNext --module NodeNext --outDir lib/esm", "movem": "mjs.bat" , "movec": "cjs.bat", "build:cjs": "tsc --moduleResolution node --module commonjs --outDir lib/cjs", "prepack": "" }, "keywords": [ "hash", "rng", "SHA", "UUID", "CRC", "MersenneTwister", "randomBytes", "XorShift" ], "author": "HearHellacopters", "license": "MIT", "bugs": { "url": "https://github.com/hearhellacopters/hash-maker/issues" }, "homepage": "https://github.com/hearhellacopters/hash-maker#readme", "devDependencies": { "@types/mocha": "^10.0.2", "@types/node": "^20.7.0", "@typescript/lib-dom": "npm:@types/web@^0.0.115", "typescript": "^5.2.2" }, "engines": { "node": ">=12" } }