101 lines
3.0 KiB
JSON
101 lines
3.0 KiB
JSON
|
{
|
||
|
"_args": [
|
||
|
[
|
||
|
{
|
||
|
"raw": "topo@2.x.x",
|
||
|
"scope": null,
|
||
|
"escapedName": "topo",
|
||
|
"name": "topo",
|
||
|
"rawSpec": "2.x.x",
|
||
|
"spec": ">=2.0.0 <3.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/joi"
|
||
|
]
|
||
|
],
|
||
|
"_from": "topo@>=2.0.0 <3.0.0",
|
||
|
"_id": "topo@2.0.2",
|
||
|
"_inCache": true,
|
||
|
"_location": "/topo",
|
||
|
"_nodeVersion": "6.2.2",
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "packages-12-west.internal.npmjs.com",
|
||
|
"tmp": "tmp/topo-2.0.2.tgz_1468781222307_0.6634320858865976"
|
||
|
},
|
||
|
"_npmUser": {
|
||
|
"name": "devinivy",
|
||
|
"email": "devin@bigroomstudios.com"
|
||
|
},
|
||
|
"_npmVersion": "2.14.11",
|
||
|
"_phantomChildren": {},
|
||
|
"_requested": {
|
||
|
"raw": "topo@2.x.x",
|
||
|
"scope": null,
|
||
|
"escapedName": "topo",
|
||
|
"name": "topo",
|
||
|
"rawSpec": "2.x.x",
|
||
|
"spec": ">=2.0.0 <3.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"/joi"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmjs.org/topo/-/topo-2.0.2.tgz",
|
||
|
"_shasum": "cd5615752539057c0dc0491a621c3bc6fbe1d182",
|
||
|
"_shrinkwrap": null,
|
||
|
"_spec": "topo@2.x.x",
|
||
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/joi",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/hapijs/topo/issues"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"hoek": "4.x.x"
|
||
|
},
|
||
|
"description": "Topological sorting with grouping support",
|
||
|
"devDependencies": {
|
||
|
"code": "3.x.x",
|
||
|
"lab": "10.x.x"
|
||
|
},
|
||
|
"directories": {},
|
||
|
"dist": {
|
||
|
"shasum": "cd5615752539057c0dc0491a621c3bc6fbe1d182",
|
||
|
"tarball": "https://registry.npmjs.org/topo/-/topo-2.0.2.tgz"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=4.0.0"
|
||
|
},
|
||
|
"gitHead": "742ec5ed82eb1e20f9ffe4eec8067cd776d5d968",
|
||
|
"homepage": "https://github.com/hapijs/topo#readme",
|
||
|
"keywords": [
|
||
|
"topological",
|
||
|
"sort",
|
||
|
"toposort",
|
||
|
"topsort"
|
||
|
],
|
||
|
"license": "BSD-3-Clause",
|
||
|
"main": "lib/index.js",
|
||
|
"maintainers": [
|
||
|
{
|
||
|
"name": "hueniverse",
|
||
|
"email": "eran@hammer.io"
|
||
|
},
|
||
|
{
|
||
|
"name": "devinivy",
|
||
|
"email": "devin@bigroomstudios.com"
|
||
|
}
|
||
|
],
|
||
|
"name": "topo",
|
||
|
"optionalDependencies": {},
|
||
|
"readme": "# topo\n\nTopological sorting with grouping support.\n\n[![Build Status](https://secure.travis-ci.org/hapijs/topo.svg?branch=master)](http://travis-ci.org/hapijs/topo)\n\nLead Maintainer: [Devin Ivy](https://github.com/devinivy)\n\n## Usage\n\nSee the [API Reference](API.md)\n\n**Example**\n```node\nconst Topo = require('topo');\n\nconst morning = new Topo();\n\nmorning.add('Nap', { after: ['breakfast', 'prep'] });\n\nmorning.add([\n 'Make toast',\n 'Pour juice'\n], { before: 'breakfast', group: 'prep' });\n\nmorning.add('Eat breakfast', { group: 'breakfast' });\n\nmorning.nodes; // ['Make toast', 'Pour juice', 'Eat breakfast', 'Nap']\n```\n",
|
||
|
"readmeFilename": "README.md",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/hapijs/topo.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "lab -a code -t 100 -L",
|
||
|
"test-cov-html": "lab -a code -t 100 -L -r html -o coverage.html"
|
||
|
},
|
||
|
"version": "2.0.2"
|
||
|
}
|