1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| {
| "name": "cyclist",
| "version": "1.0.1",
| "repository": {
| "type": "git",
| "url": "git://github.com/mafintosh/cyclist"
| },
| "description": "Cyclist is an efficient cyclic list implemention.",
| "dependencies": {},
| "keywords": [
| "circular",
| "buffer",
| "ring",
| "cyclic",
| "data"
| ],
| "author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
| "devDependencies": {
| "standard": "^3.8.0",
| "tape": "^4.0.0"
| },
| "bugs": {
| "url": "https://github.com/mafintosh/cyclist/issues"
| },
| "homepage": "https://github.com/mafintosh/cyclist",
| "main": "index.js",
| "scripts": {
| "test": "standard && tape test.js"
| },
| "license": "MIT"
| }
|
|