time-to-botec

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

package.json (1817B)


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