time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

package.json (2342B)


      1 {
      2   "name": "@stdlib/random",
      3   "version": "0.0.12",
      4   "description": "Standard library generic random functions.",
      5   "license": "Apache-2.0",
      6   "author": {
      7     "name": "The Stdlib Authors",
      8     "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
      9   },
     10   "contributors": [
     11     {
     12       "name": "The Stdlib Authors",
     13       "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
     14     }
     15   ],
     16   "main": "./lib",
     17   "directories": {
     18     "doc": "./docs",
     19     "example": "./examples",
     20     "lib": "./lib",
     21     "test": "./test"
     22   },
     23   "types": "./docs/types",
     24   "scripts": {
     25     "test": "make test",
     26     "test-cov": "make test-cov",
     27     "examples": "make examples",
     28     "benchmark": "make benchmark"
     29   },
     30   "homepage": "https://stdlib.io",
     31   "repository": {
     32     "type": "git",
     33     "url": "git://github.com/stdlib-js/random.git"
     34   },
     35   "bugs": {
     36     "url": "https://github.com/stdlib-js/stdlib/issues"
     37   },
     38   "dependencies": {
     39     "@stdlib/array": "^0.0.x",
     40     "@stdlib/assert": "^0.0.x",
     41     "@stdlib/blas": "^0.0.x",
     42     "@stdlib/buffer": "^0.0.x",
     43     "@stdlib/cli": "^0.0.x",
     44     "@stdlib/constants": "^0.0.x",
     45     "@stdlib/fs": "^0.0.x",
     46     "@stdlib/math": "^0.0.x",
     47     "@stdlib/process": "^0.0.x",
     48     "@stdlib/stats": "^0.0.x",
     49     "@stdlib/streams": "^0.0.x",
     50     "@stdlib/symbol": "^0.0.x",
     51     "@stdlib/types": "^0.0.x",
     52     "@stdlib/utils": "^0.0.x",
     53     "debug": "^2.6.9",
     54     "readable-stream": "^2.1.4"
     55   },
     56   "devDependencies": {
     57     "@stdlib/bench": "^0.0.x",
     58     "@stdlib/number": "^0.0.x",
     59     "@stdlib/string": "^0.0.x",
     60     "@stdlib/time": "^0.0.x",
     61     "proxyquire": "^2.0.0",
     62     "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
     63     "istanbul": "^0.4.1",
     64     "tap-spec": "5.x.x"
     65   },
     66   "engines": {
     67     "node": ">=0.10.0",
     68     "npm": ">2.7.0"
     69   },
     70   "os": [
     71     "aix",
     72     "darwin",
     73     "freebsd",
     74     "linux",
     75     "macos",
     76     "openbsd",
     77     "sunos",
     78     "win32",
     79     "windows"
     80   ],
     81   "keywords": [
     82     "stdlib",
     83     "stdrandom",
     84     "stdmath",
     85     "standard",
     86     "library",
     87     "std",
     88     "lib",
     89     "mathematics",
     90     "math",
     91     "statistics",
     92     "stats",
     93     "prng",
     94     "rng",
     95     "pseudorandom",
     96     "random",
     97     "rand",
     98     "generator",
     99     "seed",
    100     "seedable",
    101     "factory",
    102     "generic"
    103   ],
    104   "funding": {
    105     "type": "patreon",
    106     "url": "https://www.patreon.com/athan"
    107   }
    108 }