time-to-botec

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

package.json (1860B)


      1 {
      2   "name": "@stdlib/blas",
      3   "version": "0.0.12",
      4   "description": "Standard library BLAS.",
      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/blas.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/math": "^0.0.x",
     42     "@stdlib/number": "^0.0.x",
     43     "@stdlib/types": "^0.0.x",
     44     "@stdlib/utils": "^0.0.x"
     45   },
     46   "devDependencies": {
     47     "@stdlib/bench": "^0.0.x",
     48     "@stdlib/ndarray": "^0.0.x",
     49     "@stdlib/random": "^0.0.x",
     50     "proxyquire": "^2.0.0",
     51     "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
     52     "istanbul": "^0.4.1",
     53     "tap-spec": "5.x.x"
     54   },
     55   "engines": {
     56     "node": ">=0.10.0",
     57     "npm": ">2.7.0"
     58   },
     59   "os": [
     60     "aix",
     61     "darwin",
     62     "freebsd",
     63     "linux",
     64     "macos",
     65     "openbsd",
     66     "sunos",
     67     "win32",
     68     "windows"
     69   ],
     70   "keywords": [
     71     "stdlib",
     72     "stdmath",
     73     "stdblas",
     74     "standard",
     75     "library",
     76     "std",
     77     "lib",
     78     "mathematics",
     79     "math",
     80     "blas",
     81     "linear",
     82     "algebra",
     83     "linalg"
     84   ],
     85   "funding": {
     86     "type": "patreon",
     87     "url": "https://www.patreon.com/athan"
     88   }
     89 }