package.json (2179B)
1 { 2 "name": "@stdlib/utils", 3 "version": "0.0.12", 4 "description": "Standard utilities.", 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/index.js", 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/utils.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/os": "^0.0.x", 48 "@stdlib/process": "^0.0.x", 49 "@stdlib/random": "^0.0.x", 50 "@stdlib/regexp": "^0.0.x", 51 "@stdlib/streams": "^0.0.x", 52 "@stdlib/string": "^0.0.x", 53 "@stdlib/symbol": "^0.0.x", 54 "@stdlib/time": "^0.0.x", 55 "@stdlib/types": "^0.0.x", 56 "debug": "^2.6.9" 57 }, 58 "devDependencies": { 59 "@stdlib/bench": "^0.0.x", 60 "@stdlib/number": "^0.0.x", 61 "@stdlib/proxy": "^0.0.x", 62 "chai": "^3.5.0", 63 "proxyquire": "^2.0.0", 64 "semver": "^6.0.0", 65 "tape": "git+https://github.com/kgryte/tape.git#fix/globby", 66 "istanbul": "^0.4.1", 67 "tap-spec": "5.x.x" 68 }, 69 "engines": { 70 "node": ">=0.10.0", 71 "npm": ">2.7.0" 72 }, 73 "os": [ 74 "aix", 75 "darwin", 76 "freebsd", 77 "linux", 78 "macos", 79 "openbsd", 80 "sunos", 81 "win32", 82 "windows" 83 ], 84 "keywords": [ 85 "stdlib", 86 "stdutil", 87 "utilities", 88 "utility", 89 "utils", 90 "util" 91 ], 92 "funding": { 93 "type": "patreon", 94 "url": "https://www.patreon.com/athan" 95 } 96 }