{"_id":"alice","_rev":"28-2449ee185ca0407475b0ae2a2ee6ed0b","name":"alice","time":{"modified":"2022-06-13T02:38:10.275Z","created":"2014-04-26T13:18:36.939Z","0.2.2":"2014-04-26T13:18:36.939Z","0.0.1":"2015-01-14T19:05:21.971Z","0.0.2":"2015-01-14T19:19:03.011Z","0.0.3":"2015-01-14T19:22:08.204Z","0.0.4":"2015-01-19T23:45:52.067Z","0.0.5":"2015-01-30T15:51:39.738Z","0.0.7":"2015-02-01T21:33:02.580Z","0.0.9":"2015-02-01T22:57:11.943Z","0.0.10":"2015-02-17T19:24:08.644Z","0.1.0":"2017-11-08T19:42:50.793Z","0.1.1":"2017-11-08T20:16:15.058Z","0.1.2":"2017-11-09T20:54:39.755Z"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist-tags":{"latest":"0.1.2"},"description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","readme":"### Alice\n\n[![NPM VERSION](http://img.shields.io/npm/v/alice.svg?style=flat)](https://www.npmjs.org/package/alice)\n[![CODACY BADGE](https://img.shields.io/codacy/b18ed7d95b0a4707a0ff7b88b30d3def.svg?style=flat)](https://www.codacy.com/public/44gatti/alice)\n[![CODECLIMATE-TEST-COVERAGE](https://img.shields.io/codeclimate/coverage/github/rootslab/alice.svg?style=flat)](https://codeclimate.com/github/rootslab/alice)\n[![LICENSE](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rootslab/alice#mit-license)\n\n![NODE VERSION](https://img.shields.io/node/v/alice.svg)\n[![TRAVIS CI BUILD](http://img.shields.io/travis/rootslab/alice.svg?style=flat)](http://travis-ci.org/rootslab/alice)\n[![BUILD STATUS](http://img.shields.io/david/rootslab/alice.svg?style=flat)](https://david-dm.org/rootslab/alice)\n[![DEVDEPENDENCY STATUS](http://img.shields.io/david/dev/rootslab/alice.svg?style=flat)](https://david-dm.org/rootslab/alice#info=devDependencies)\n\n[![NPM MONTHLY](http://img.shields.io/npm/dm/alice.svg?style=flat)](http://npm-stat.com/charts.html?package=alice)\n![NPM YEARLY](https://img.shields.io/npm/dy/alice.svg)\n\n[![NPM GRAPH](https://nodei.co/npm/alice.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/alice/)\n\n\n> __Alice__, a simple and performant data structure for bipartite graphs with integer values as vertices.\n\n\n### Install\n\n```bash\n$ npm install alice [-g]\n```\n\n> __require__:\n\n```javascript\nvar Alice  = require( 'alice' );\n```\n### Run Tests\n\n> __to run all test files, install devDependecies:__\n\n```bash\n $ cd alice/\n # install or update devDependecies\n $ npm install \n # run tests\n $ npm test\n```\n\n\n### Constructor\n\n```javascript\nAlice()\n// or\nnew Alice()\n```\n\n###  Properties\n\n\n```javascript\n/*\n * total edges\n */\nAlice.edges : Number\n\n/*\n * graph edges\n */\nAlice.e : Number\n\n/*\n * graph vertices\n */\nAlice.v : Number\n\n```\n\n### Methods\n\n> Arguments between [] are optional.\n\n```javascript\n/*\n * Add an edge to the graph. \n */\nAlice#add : function ( Number x, Number y [, Boolean strict [, Object label ] ] ) : Number\n\n/*\n * Cut an edge from the graph.\n */\nAlice#cut : function ( Number x, Number y ) : Number\n\n/*\n * Clear edges and vertices.\n */\nAlice#fire : function () : Alice\n\n/*\n * Prune edges to test graph acyclicity.\n * It optionally returns every edge as a single array [ x, y ]\n */\nAlice#prune : function ( [ Boolean edge_as_array ] ) : Array\n\n/*\n * Perform A Depth-First Search starting from the input vertex.\n * It returns a list of vertices\n */\nAlice#depth : function ( Number x ) : Array\n\n/*\n * Perform A Breadth-First Search starting from the input vertex.\n * It returns a list of vertices\n */\nAlice#breadth : function ( Number x ) : Array\n\n/*\n * It returns the list of edges\n */\nAlice#elist() : function () : Array\n\n\n```\n\n### MIT License\n\n> Copyright (c) 2015-present &lt; Guglielmo Ferri : 44gatti@gmail.com &gt;\n\n> Permission is hereby granted, free of charge, to any person obtaining\n> a copy of this software and associated documentation files (the\n> 'Software'), to deal in the Software without restriction, including\n> without limitation the rights to use, copy, modify, merge, publish,\n> distribute, sublicense, and/or sell copies of the Software, and to\n> permit persons to whom the Software is furnished to do so, subject to\n> the following conditions:\n\n> __The above copyright notice and this permission notice shall be\n> included in all copies or substantial portions of the Software.__\n\n> THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n> IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n> CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n> TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n> SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[![GA](https://ga-beacon.appspot.com/UA-53998692-1/alice/Readme?pixel)](https://github.com/igrigorik/ga-beacon)","versions":{"0.0.1":{"name":"alice","version":"0.0.1","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"7b03e00c57fe4c9aaf40d6b67d8f106e6764fa9f","_id":"alice@0.0.1","_shasum":"1dfb50e3db4dce94c813fa33b52d26fdd65603f1","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"1dfb50e3db4dce94c813fa33b52d26fdd65603f1","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.1.tgz","integrity":"sha512-uK7FB7l7Uq8E0OikEdudtzJ5xpIlN8DY02j76m4Lw355bnU7LRLOvIsvnwm9Iylr3+P8KCQgGJmYLtp016q6Bw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDFCABnMxbGDKTqmv3sZPLzvEulTvYa7Og1XuVg/34jCgIgbAJsWDNR9QM6w4HFG/iM6eOBVg3aqc3VT8OAeYvX/To="}]}},"0.0.2":{"name":"alice","version":"0.0.2","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"cd04a9ca1781a45b51bf91b417c7db20ed69b1a1","_id":"alice@0.0.2","_shasum":"7cf1cded2e33164696897c28c60bb8e5b4269242","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"7cf1cded2e33164696897c28c60bb8e5b4269242","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.2.tgz","integrity":"sha512-SlMavUvR/c5Q7jwcZbQaSmImb9ilhDFIk/PVRurKTfYxRfpINoQ45LesK24uEBT/iAz7FZrBcl8vCDXlrdbb1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIEebs0OKYTsvYHLsYF88AtO0s4KXDHWK6DL20YPzEnQIgXAszNLbFl1ukddukm8GNfH/cdHxZ44rydCsXqEiqf0M="}]}},"0.0.3":{"name":"alice","version":"0.0.3","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"60a3556553d3092a031d495970e816551d1e1f0d","_id":"alice@0.0.3","_shasum":"8f11463aad0619422c77e9733e54b1261934ac44","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"8f11463aad0619422c77e9733e54b1261934ac44","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.3.tgz","integrity":"sha512-E8Q4tnnWsq1D2WyaCWn0+8ixPLhJHfRLyerNA76qN/HZaW/nUUPANAL38pNNVq+kg/+f5IEV9LQ166ZwJZhYqA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCP6FqQhzah6CTa5FGcNZGOhRX4aZWVVrJjRFStfsxnfgIhAP8tZGYqFCfkFOg0W0g+jN9ebThXZ99nNCz1xIpo1FMl"}]}},"0.0.4":{"name":"alice","version":"0.0.4","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"05d111644fe95a5b55627ee58771c6e4e6a0fc3d","_id":"alice@0.0.4","_shasum":"b88e7c0bed36dbe09055cb4a15c1d20471e859c9","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"b88e7c0bed36dbe09055cb4a15c1d20471e859c9","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.4.tgz","integrity":"sha512-b+9SKm7cxox3adO8fBQlQ42rgIy45h++PgXt7KJbVRZE0Z8oes2p5FB2sPdK46XDpAbonFlDK1NWnVNAVbDDDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBlzkFz8PwIUuETFIwsFEDtgmUoRXR4ERbQM8XLink9AiEAwDNW/EOPmlJ6nczrzA1k+LttC2JGnQjn8aeivhHklM8="}]}},"0.0.5":{"name":"alice","version":"0.0.5","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"dca884f345ba9959ed1fdba7a0f09521dec9d954","_id":"alice@0.0.5","_shasum":"08a80c56869af902daac0b84a787a28200bc10a6","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"08a80c56869af902daac0b84a787a28200bc10a6","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.5.tgz","integrity":"sha512-mcjbhUR1Cpg82tM0L++tBW0bK2+CZYGooRkon5pS1CZuhD+6zzPpbLuiYIGuX0QHMs6X4tQM2iNBKFlvbxZJ8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7YrJpybKzOCY3sADPFf6muElcF/B8RRo6uW0X2P3SCQIhALwXHlO/UIoTofARtONCq3to6lFrbCx+0qdUgv+rJydQ"}]}},"0.0.7":{"name":"alice","version":"0.0.7","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"15120c9c57cfe99c0db2b233b00a5d69e4201917","_id":"alice@0.0.7","_shasum":"5883651fb6a4642da873bb44e769de47a2f74ea0","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"5883651fb6a4642da873bb44e769de47a2f74ea0","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.7.tgz","integrity":"sha512-D4LqFeqzGfyX+J6oJLonsVEX7nnLXEB3pjj/EK43LwbQQAiqZmGYZ0rVlhYFVi/yicUbNfmXtihLQcbNDj6jGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIECSBCZpzqkRdndh/S4wGvcpuAFM51rcnT9mb/nfEMJEAiA2UhYunzmHN42mUpbP56iwGwwX0AoDZjsLEX8bruLQNA=="}]}},"0.0.9":{"name":"alice","version":"0.0.9","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{"toni":">=0.5.3"},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"19ce5a87c593e9e6a95d556b22d0b68afcf03335","_id":"alice@0.0.9","_shasum":"3c19b1a9a9adfd069e9e3e48dd71483230bd61e1","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"3c19b1a9a9adfd069e9e3e48dd71483230bd61e1","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.9.tgz","integrity":"sha512-VZWcnvUhTjd5s+P0vOJiSNALEgArnmxVV+r2pAIfvnM8//UUMcdNmggh1PanXCqKNtLmIQKUt+V1l4MVyBnStA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGvTHG/9eQtvF+LIa4aece7CwbUOwXhmglepWqhhKAHrAiAerhYftnZPx7wQnNB3IkXQBk3V8nwrm3vYjBLchfiTtA=="}]}},"0.0.10":{"name":"alice","version":"0.0.10","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{"toni":">=0.5.3"},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"678669a5519f6c857df875b631745dfc1473eff0","_id":"alice@0.0.10","_shasum":"99f87109c871237d0031b80858fbfce94667e67b","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"rootslab","email":"admin@rootslab.it"},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"dist":{"shasum":"99f87109c871237d0031b80858fbfce94667e67b","tarball":"https://registry.npmjs.org/alice/-/alice-0.0.10.tgz","integrity":"sha512-/BDfM4zm7QQiu8EgxeBZyRnZFQykRVYdEG0rkm3KH7/n/kwLYP2EM9qbi540gvymIVM4Zrd8X0MUGkw9MSi10Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHXYbcPKg9fZg4SX3YJFYAUrm0xkKwXuTAfvmKQirGvcAiEAzzKIv+fy65EUK0sFNwioXvVt1f6Qv9l+jf4+k9czuDE="}]}},"0.1.0":{"name":"alice","version":"0.1.0","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{"train":">=4.4.0","peela":">=1.3.2"},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"d663f5019e21df197c08e2ae6489cb104e68e7e0","_id":"alice@0.1.0","_shasum":"ae8fb125a81648155db9a028306c4c72d41b449e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"rootslab","email":"44gatti@gmail.com"},"dist":{"shasum":"ae8fb125a81648155db9a028306c4c72d41b449e","tarball":"https://registry.npmjs.org/alice/-/alice-0.1.0.tgz","integrity":"sha512-CzgOSHrCQy9WFJ5M5C3lpEd22M8n0jSCqFgGUcYQoCPie4msm0pKXMtPQ5RD0wqxXhTT3Iqa7G5nWeRDQOFCCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9oX7+efiMT9Pon/KqtRVwXH0t1y4gc9RliMbpTeT41QIhAKk/gq3gPA62+NthUIwkIa0+L3dA6ShbtSib5wqlyYLi"}]},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/alice-0.1.0.tgz_1510170169887_0.8893746535759419"}},"0.1.1":{"name":"alice","version":"0.1.1","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{"train":">=4.4.0","peela":">=1.3.2"},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"c5591c826b14f8d1bdbdc74924e30dc99d5d8efb","_id":"alice@0.1.1","_shasum":"fcba9bc622bfcff45b5af1f38dcce2a24e831eda","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"rootslab","email":"44gatti@gmail.com"},"dist":{"shasum":"fcba9bc622bfcff45b5af1f38dcce2a24e831eda","tarball":"https://registry.npmjs.org/alice/-/alice-0.1.1.tgz","integrity":"sha512-c4+Nfnfd2pubcF23vigeETVEtvmBVs2RS4y5KKa/ICZMqj3zINI9em98M/J5AnDkhVEljpP/JSt/Xq1/lh+UBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwj/WdC1acw2J8fNnBYmuLi7szRbGNM8biGIgJVjxBLQIgc8a/e9agxaaaI299Btw39v73JLZURg9BuPRq5CYP13c="}]},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/alice-0.1.1.tgz_1510172174172_0.9856207268312573"}},"0.1.2":{"name":"alice","version":"0.1.2","description":"Alice, a simple and performant data structure for bipartite graphs with integer values as vertices.","homepage":"https://github.com/rootslab/alice","private":false,"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"dependencies":{"train":">=4.4.0","peela":">=1.3.2"},"devDependencies":{"dado":">=0.2.0"},"main":"index","engines":{"node":">=0.10.x"},"scripts":{"test":"node test/run.js"},"license":"MIT","bugs":{"url":"https://github.com/rootslab/alice/issues"},"gitHead":"50bb0a5eb224050fb47f38719fc6d60c37ebc406","_id":"alice@0.1.2","_shasum":"fdc0334ef9f48d583bee1f32e23ac1b4a78e9b62","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"rootslab","email":"44gatti@gmail.com"},"dist":{"shasum":"fdc0334ef9f48d583bee1f32e23ac1b4a78e9b62","tarball":"https://registry.npmjs.org/alice/-/alice-0.1.2.tgz","integrity":"sha512-MBZKCEzt9mGzv0/mJy7XK/ULquB94Zr82BcdSqLyrPkDHr2/QhHs5kUJlpfaApkFrhqW9LtLL5QgN6UHdNIUyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+d7l3gdJ//TrlQrc02wDsO3Qflp8gqxibnY0ZFi2xuwIgOFhagFJL+h4+mqNjy0Gx1pHzKgxZ/X/fG2fU7sli/8U="}]},"maintainers":[{"name":"rootslab","email":"admin@rootslab.it"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/alice-0.1.2.tgz_1510260878747_0.9430890246294439"}}},"homepage":"https://github.com/rootslab/alice","keywords":["alice","graph","2-graph","bipartite graph","integers","cyclic graph","acyclic graph","prune","cut","data structure","util"],"repository":{"type":"git","url":"git://github.com/rootslab/alice.git"},"author":{"name":"Guglielmo Ferri","email":"44gatti@gmail.com"},"bugs":{"url":"https://github.com/rootslab/alice/issues"},"license":"MIT","readmeFilename":"Readme.md","users":{"rootslab":true}}