|
1 | 1 | {
|
2 |
| - "name": "@aureooms/js-skip-list", |
| 2 | + "name": "@data-structure/skip-list", |
3 | 3 | "description": "Skip list data structure for JavaScript",
|
4 | 4 | "version": "0.0.1",
|
5 |
| - "author": "aureooms", |
| 5 | + "author": "make-github-pseudonymous-again", |
6 | 6 | "ava": {
|
7 | 7 | "files": [
|
8 | 8 | "test/src/**/*"
|
|
74 | 74 | }
|
75 | 75 | },
|
76 | 76 | "bugs": {
|
77 |
| - "url": "https://github.com/make-github-pseudonymous-again/js-skip-list/issues" |
| 77 | + "url": "https://github.com/data-structures-and-algorithms/skip-list/issues" |
| 78 | + }, |
| 79 | + "dependencies": { |
| 80 | + "@iterable-iterator/cardinality": "^4.0.0", |
| 81 | + "@iterable-iterator/zip": "^1.0.1" |
78 | 82 | },
|
79 |
| - "dependencies": {}, |
80 | 83 | "devDependencies": {
|
81 |
| - "@aureooms/js-cardinality": "2.0.0", |
82 |
| - "@aureooms/js-compare": "1.4.8", |
83 |
| - "@aureooms/js-itertools": "5.0.1", |
84 |
| - "@aureooms/js-random": "2.0.0", |
85 |
| - "@babel/cli": "7.13.10", |
86 |
| - "@babel/core": "7.13.10", |
87 |
| - "@babel/preset-env": "7.13.10", |
88 |
| - "@babel/register": "7.13.8", |
| 84 | + "@babel/cli": "7.19.3", |
| 85 | + "@babel/core": "7.19.6", |
| 86 | + "@babel/preset-env": "7.19.4", |
| 87 | + "@babel/register": "7.18.9", |
| 88 | + "@iterable-iterator/consume": "^1.0.1", |
| 89 | + "@iterable-iterator/iter": "^1.0.1", |
| 90 | + "@iterable-iterator/list": "^1.0.1", |
| 91 | + "@iterable-iterator/map": "^1.0.1", |
| 92 | + "@iterable-iterator/range": "^2.1.0", |
| 93 | + "@iterable-iterator/slice": "^1.0.2", |
| 94 | + "@iterable-iterator/sorted": "^1.0.0", |
| 95 | + "@randomized/random": "^4.1.0", |
| 96 | + "@total-order/primitive": "^1.0.1", |
89 | 97 | "ava": "3.15.0",
|
90 | 98 | "babel-plugin-transform-remove-console": "6.9.4",
|
91 |
| - "babel-plugin-unassert": "3.0.1", |
| 99 | + "babel-plugin-unassert": "3.2.0", |
92 | 100 | "babel-preset-power-assert": "3.0.0",
|
93 |
| - "coveralls": "3.1.0", |
| 101 | + "coveralls": "3.1.1", |
94 | 102 | "esdoc": "1.1.0",
|
95 | 103 | "esdoc-ecmascript-proposal-plugin": "1.0.0",
|
96 | 104 | "esdoc-inject-script-plugin": "1.0.0",
|
97 | 105 | "esdoc-inject-style-plugin": "1.0.0",
|
98 | 106 | "esdoc-standard-plugin": "1.0.0",
|
99 |
| - "np": "7.4.0", |
| 107 | + "np": "7.6.2", |
100 | 108 | "nyc": "15.1.0",
|
101 | 109 | "power-assert": "1.6.1",
|
102 |
| - "regenerator-runtime": "0.13.7", |
103 |
| - "xo": "0.36.1" |
| 110 | + "regenerator-runtime": "0.13.10", |
| 111 | + "xo": "0.52.4" |
104 | 112 | },
|
105 | 113 | "files": [
|
106 | 114 | "lib"
|
107 | 115 | ],
|
108 |
| - "homepage": "https://make-github-pseudonymous-again.github.io/js-skip-list", |
| 116 | + "homepage": "https://data-structures-and-algorithms.github.io/skip-list", |
109 | 117 | "keywords": [
|
110 | 118 | "data",
|
111 | 119 | "list",
|
|
122 | 130 | },
|
123 | 131 | "repository": {
|
124 | 132 | "type": "git",
|
125 |
| - "url": "https://github.com/make-github-pseudonymous-again/js-skip-list" |
| 133 | + "url": "https://github.com/data-structures-and-algorithms/skip-list" |
126 | 134 | },
|
127 | 135 | "scripts": {
|
128 | 136 | "build": "babel --delete-dir-on-start --env-name production src -d lib",
|
|
142 | 150 | "unicorn"
|
143 | 151 | ],
|
144 | 152 | "rules": {
|
145 |
| - "unicorn/filename-case": "off" |
| 153 | + "unicorn/filename-case": "off", |
| 154 | + "unicorn/prefer-node-protocol": "off" |
146 | 155 | },
|
147 | 156 | "ignores": [
|
148 | 157 | "lib",
|
|
0 commit comments