UNPKG

motion

Version:

motion - moving development forward

90 lines (89 loc) 3.89 kB
{ "_args": [ [ "archy@https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "/Users/nw/flint/packages/flint" ] ], "_from": "archy@>=1.0.0 <2.0.0", "_id": "archy@1.0.0", "_inCache": true, "_location": "/archy", "_phantomChildren": {}, "_requested": { "name": "archy", "raw": "archy@https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "rawSpec": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "scope": null, "spec": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "type": "remote" }, "_requiredBy": [ "/gulp" ], "_resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "_shasum": "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40", "_shrinkwrap": null, "_spec": "archy@https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "_where": "/Users/nw/flint/packages/flint", "author": { "email": "mail@substack.net", "name": "James Halliday", "url": "http://substack.net" }, "bugs": { "url": "https://github.com/substack/node-archy/issues" }, "dependencies": {}, "description": "render nested hierarchies `npm ls` style with unicode pipes", "devDependencies": { "tap": "~0.3.3", "tape": "~0.1.1" }, "homepage": "https://github.com/substack/node-archy#readme", "keywords": [ "hierarchy", "npm ls", "pretty", "print", "unicode" ], "license": "MIT", "main": "index.js", "name": "archy", "optionalDependencies": {}, "readme": "# archy\n\nRender nested hierarchies `npm ls` style with unicode pipes.\n\n[![browser support](http://ci.testling.com/substack/node-archy.png)](http://ci.testling.com/substack/node-archy)\n\n[![build status](https://secure.travis-ci.org/substack/node-archy.png)](http://travis-ci.org/substack/node-archy)\n\n# example\n\n``` js\nvar archy = require('archy');\nvar s = archy({\n label : 'beep',\n nodes : [\n 'ity',\n {\n label : 'boop',\n nodes : [\n {\n label : 'o_O',\n nodes : [\n {\n label : 'oh',\n nodes : [ 'hello', 'puny' ]\n },\n 'human'\n ]\n },\n 'party\\ntime!'\n ]\n }\n ]\n});\nconsole.log(s);\n```\n\noutput\n\n```\nbeep\n├── ity\n└─┬ boop\n ├─┬ o_O\n │ ├─┬ oh\n │ │ ├── hello\n │ │ └── puny\n │ └── human\n └── party\n time!\n```\n\n# methods\n\nvar archy = require('archy')\n\n## archy(obj, prefix='', opts={})\n\nReturn a string representation of `obj` with unicode pipe characters like how\n`npm ls` looks.\n\n`obj` should be a tree of nested objects with `'label'` and `'nodes'` fields.\n`'label'` is a string of text to display at a node level and `'nodes'` is an\narray of the descendents of the current node.\n\nIf a node is a string, that string will be used as the `'label'` and an empty\narray of `'nodes'` will be used.\n\n`prefix` gets prepended to all the lines and is used by the algorithm to\nrecursively update.\n\nIf `'label'` has newlines they will be indented at the present indentation level\nwith the current prefix.\n\nTo disable unicode results in favor of all-ansi output set `opts.unicode` to\n`false`.\n\n# install\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install archy\n```\n\n# license\n\nMIT\n", "readmeFilename": "readme.markdown", "repository": { "type": "git", "url": "git+ssh://git@github.com/substack/node-archy.git" }, "scripts": { "test": "tap test" }, "testling": { "browsers": { "chrome": [ "20.0" ], "firefox": [ "10.0", "15.0" ], "iexplore": [ "6.0", "7.0", "8.0", "9.0" ], "opera": [ "12.0" ], "safari": [ "5.1" ] }, "files": "test/*.js" }, "version": "1.0.0" }