time-to-botec

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

package.json (1708B)


      1 {
      2   "name": "@stdlib/stats/base/dvarianceyc",
      3   "version": "0.0.0",
      4   "description": "Calculate the variance of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.",
      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   "browser": "./lib/main.js",
     18   "gypfile": true,
     19   "directories": {
     20     "benchmark": "./benchmark",
     21     "doc": "./docs",
     22     "example": "./examples",
     23     "include": "./include",
     24     "lib": "./lib",
     25     "src": "./src",
     26     "test": "./test"
     27   },
     28   "types": "./docs/types",
     29   "scripts": {},
     30   "homepage": "https://github.com/stdlib-js/stdlib",
     31   "repository": {
     32     "type": "git",
     33     "url": "git://github.com/stdlib-js/stdlib.git"
     34   },
     35   "bugs": {
     36     "url": "https://github.com/stdlib-js/stdlib/issues"
     37   },
     38   "dependencies": {},
     39   "devDependencies": {},
     40   "engines": {
     41     "node": ">=0.10.0",
     42     "npm": ">2.7.0"
     43   },
     44   "os": [
     45     "aix",
     46     "darwin",
     47     "freebsd",
     48     "linux",
     49     "macos",
     50     "openbsd",
     51     "sunos",
     52     "win32",
     53     "windows"
     54   ],
     55   "keywords": [
     56     "stdlib",
     57     "stdmath",
     58     "statistics",
     59     "stats",
     60     "mathematics",
     61     "math",
     62     "variance",
     63     "var",
     64     "deviation",
     65     "dispersion",
     66     "sample variance",
     67     "unbiased",
     68     "stdev",
     69     "std",
     70     "standard deviation",
     71     "youngs",
     72     "cramer",
     73     "strided",
     74     "strided array",
     75     "typed",
     76     "array",
     77     "float64",
     78     "double",
     79     "float64array"
     80   ],
     81   "__stdlib__": {}
     82 }