package.json (2337B)
1 { 2 "name": "@stdlib/assert", 3 "version": "0.0.12", 4 "description": "Standard assertion 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/assert.git" 34 }, 35 "bugs": { 36 "url": "https://github.com/stdlib-js/stdlib/issues" 37 }, 38 "dependencies": { 39 "@stdlib/array": "^0.0.x", 40 "@stdlib/cli": "^0.0.x", 41 "@stdlib/complex": "^0.0.x", 42 "@stdlib/constants": "^0.0.x", 43 "@stdlib/fs": "^0.0.x", 44 "@stdlib/math": "^0.0.x", 45 "@stdlib/ndarray": "^0.0.x", 46 "@stdlib/number": "^0.0.x", 47 "@stdlib/os": "^0.0.x", 48 "@stdlib/process": "^0.0.x", 49 "@stdlib/regexp": "^0.0.x", 50 "@stdlib/streams": "^0.0.x", 51 "@stdlib/string": "^0.0.x", 52 "@stdlib/symbol": "^0.0.x", 53 "@stdlib/types": "^0.0.x", 54 "@stdlib/utils": "^0.0.x" 55 }, 56 "devDependencies": { 57 "@stdlib/bench": "^0.0.x", 58 "@stdlib/bigint": "^0.0.x", 59 "@stdlib/buffer": "^0.0.x", 60 "@stdlib/datasets": "^0.0.x", 61 "@stdlib/random": "^0.0.x", 62 "proxyquire": "^2.0.0", 63 "tape": "git+https://github.com/kgryte/tape.git#fix/globby", 64 "istanbul": "^0.4.1", 65 "tap-spec": "5.x.x" 66 }, 67 "engines": { 68 "node": ">=0.10.0", 69 "npm": ">2.7.0" 70 }, 71 "os": [ 72 "aix", 73 "darwin", 74 "freebsd", 75 "linux", 76 "macos", 77 "openbsd", 78 "sunos", 79 "win32", 80 "windows" 81 ], 82 "keywords": [ 83 "stdlib", 84 "stdassert", 85 "assertion", 86 "assert", 87 "expectation", 88 "expect", 89 "utilities", 90 "utility", 91 "utils", 92 "util", 93 "test", 94 "check", 95 "validate", 96 "validation", 97 "valid", 98 "is", 99 "isvalid", 100 "type" 101 ], 102 "funding": { 103 "type": "patreon", 104 "url": "https://www.patreon.com/athan" 105 } 106 }