package.json (1433B)
1 { 2 "name": "seedrandom", 3 "version": "3.0.5", 4 "description": "Seeded random number generator for Javascript.", 5 "main": "index.js", 6 "jsdelivr": "seedrandom.min.js", 7 "unpkg": "seedrandom.min.js", 8 "keywords": [ 9 "seed", 10 "random", 11 "crypto" 12 ], 13 "scripts": { 14 "test": "grunt travis" 15 }, 16 "repository": { 17 "type": "git", 18 "url": "git://github.com/davidbau/seedrandom.git" 19 }, 20 "author": "David Bau", 21 "license": "MIT", 22 "bugs": { 23 "url": "https://github.com/davidbau/seedrandom/issues" 24 }, 25 "homepage": "http://davidbau.com/archives/2010/01/30/random_seeds_coded_hints_and_quintillions.html", 26 "config": { 27 "blanket": { 28 "pattern": [ 29 "seedrandom.js", 30 "lib/alea.js", 31 "lib/xor128.js", 32 "lib/xorwow.js", 33 "lib/xorshift7.js", 34 "lib/tychei.js", 35 "lib/xor4096.js" 36 ] 37 } 38 }, 39 "browser": { 40 "crypto": false 41 }, 42 "devDependencies": { 43 "blanket": "latest", 44 "coveralls": "latest", 45 "grunt": "latest", 46 "grunt-browserify": "latest", 47 "grunt-release": "davidbau/grunt-release", 48 "grunt-cli": "latest", 49 "grunt-contrib-connect": "latest", 50 "grunt-contrib-copy": "latest", 51 "grunt-contrib-qunit": "latest", 52 "grunt-contrib-uglify": "latest", 53 "grunt-mocha-nyc": "latest", 54 "mocha": "latest", 55 "nyc": "latest", 56 "proxyquire": "latest", 57 "qunit": "latest", 58 "requirejs": "latest" 59 } 60 }