UNPKG

xorshift.js

Version:
50 lines (49 loc) 1.16 kB
{ "name": "xorshift.js", "version": "1.0.5", "description": "xorshift* / xorshift+ generators", "keywords": [ "prng", "random", "randomBytes", "xorshift", "xorshift128+", "xorshift128plus", "xorshift1024*", "xorshift1024star" ], "bugs": { "url": "https://github.com/fanatid/xorshift.js/issues" }, "license": "MIT", "author": "Andreas Madsen <amwebdk@gmail.com>", "contributors": [ "Emil Bay <github@tixz.dk>", "Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid)" ], "files": [ "lib", "index.js" ], "main": "./index.js", "repository": { "type": "git", "url": "https://github.com/fanatid/xorshift.js.git" }, "scripts": { "coverage": "nyc --check-coverage --branches 100 --functions 100 tape test/*.js", "lint": "standard", "test": "npm run lint && npm run unit", "unit": "tape test/*.js", "unit:compile": "$CC test/xorshift.c -o test/xorshift -std=c99" }, "dependencies": { "inherits": "^2.0.1" }, "devDependencies": { "nyc": "^6.1.1", "spawn-sync": "^1.0.15", "standard": "^6.0.4", "tape": "^4.5.1" } }