package.json (1680B)
1 { 2 "name": "@stdlib/cli", 3 "version": "0.0.10", 4 "description": "Command-line interface.", 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/cli.git" 34 }, 35 "bugs": { 36 "url": "https://github.com/stdlib-js/stdlib/issues" 37 }, 38 "dependencies": { 39 "@stdlib/utils": "^0.0.x", 40 "minimist": "^1.2.0" 41 }, 42 "devDependencies": { 43 "@stdlib/assert": "^0.0.x", 44 "@stdlib/bench": "^0.0.x", 45 "@stdlib/fs": "^0.0.x", 46 "proxyquire": "^2.0.0", 47 "tape": "git+https://github.com/kgryte/tape.git#fix/globby", 48 "istanbul": "^0.4.1", 49 "tap-spec": "5.x.x" 50 }, 51 "engines": { 52 "node": ">=0.10.0", 53 "npm": ">2.7.0" 54 }, 55 "os": [ 56 "aix", 57 "darwin", 58 "freebsd", 59 "linux", 60 "macos", 61 "openbsd", 62 "sunos", 63 "win32", 64 "windows" 65 ], 66 "keywords": [ 67 "stdlib", 68 "utilities", 69 "utility", 70 "utils", 71 "util", 72 "cli", 73 "command-line", 74 "interface" 75 ], 76 "__stdlib__": {}, 77 "funding": { 78 "type": "patreon", 79 "url": "https://www.patreon.com/athan" 80 } 81 }