|
2 | 2 | "name": "@data-structure/skip-list", |
3 | 3 | "description": "Skip list data structure for JavaScript", |
4 | 4 | "version": "0.0.1", |
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "make-github-pseudonymous-again", |
| 7 | + "homepage": "https://data-structures-and-algorithms.github.io/skip-list", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/data-structures-and-algorithms/skip-list" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/data-structures-and-algorithms/skip-list/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "data", |
| 17 | + "list", |
| 18 | + "randomized", |
| 19 | + "skip", |
| 20 | + "skip-list", |
| 21 | + "skiplist", |
| 22 | + "structures" |
| 23 | + ], |
| 24 | + "sideEffects": false, |
| 25 | + "main": "lib/index.js", |
| 26 | + "files": [ |
| 27 | + "lib" |
| 28 | + ], |
| 29 | + "scripts": { |
| 30 | + "build": "babel --delete-dir-on-start --env-name production src -d lib", |
| 31 | + "cover": "nyc --reporter=lcov npm test", |
| 32 | + "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
| 33 | + "esdoc": "esdoc", |
| 34 | + "lint": "xo", |
| 35 | + "lint-config": "fixpack --dryRun", |
| 36 | + "lint-config-and-fix": "fixpack || fixpack", |
| 37 | + "prepare": "npm run build", |
| 38 | + "release": "np", |
| 39 | + "test": "ava", |
| 40 | + "travis": "npm run lint && npm run cover" |
| 41 | + }, |
| 42 | + "dependencies": { |
| 43 | + "@iterable-iterator/cardinality": "^4.0.0", |
| 44 | + "@iterable-iterator/zip": "^1.0.1" |
| 45 | + }, |
| 46 | + "devDependencies": { |
| 47 | + "@babel/cli": "7.19.3", |
| 48 | + "@babel/core": "7.19.6", |
| 49 | + "@babel/preset-env": "7.19.4", |
| 50 | + "@babel/register": "7.18.9", |
| 51 | + "@iterable-iterator/consume": "^1.0.1", |
| 52 | + "@iterable-iterator/iter": "^1.0.1", |
| 53 | + "@iterable-iterator/list": "^1.0.1", |
| 54 | + "@iterable-iterator/map": "^1.0.1", |
| 55 | + "@iterable-iterator/range": "^2.1.0", |
| 56 | + "@iterable-iterator/slice": "^1.0.2", |
| 57 | + "@iterable-iterator/sorted": "^1.0.0", |
| 58 | + "@randomized/random": "^4.1.0", |
| 59 | + "@total-order/primitive": "^1.0.1", |
| 60 | + "ava": "3.15.0", |
| 61 | + "babel-plugin-transform-remove-console": "6.9.4", |
| 62 | + "babel-plugin-unassert": "3.2.0", |
| 63 | + "babel-preset-power-assert": "3.0.0", |
| 64 | + "coveralls": "3.1.1", |
| 65 | + "esdoc": "1.1.0", |
| 66 | + "esdoc-ecmascript-proposal-plugin": "1.0.0", |
| 67 | + "esdoc-inject-script-plugin": "1.0.0", |
| 68 | + "esdoc-inject-style-plugin": "1.0.0", |
| 69 | + "esdoc-standard-plugin": "1.0.0", |
| 70 | + "fixpack": "4.0.0", |
| 71 | + "np": "7.6.2", |
| 72 | + "nyc": "15.1.0", |
| 73 | + "power-assert": "1.6.1", |
| 74 | + "regenerator-runtime": "0.13.10", |
| 75 | + "xo": "0.52.4" |
| 76 | + }, |
6 | 77 | "ava": { |
7 | 78 | "files": [ |
8 | 79 | "test/src/**/*" |
|
73 | 144 | } |
74 | 145 | } |
75 | 146 | }, |
76 | | - "bugs": { |
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" |
82 | | - }, |
83 | | - "devDependencies": { |
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", |
97 | | - "ava": "3.15.0", |
98 | | - "babel-plugin-transform-remove-console": "6.9.4", |
99 | | - "babel-plugin-unassert": "3.2.0", |
100 | | - "babel-preset-power-assert": "3.0.0", |
101 | | - "coveralls": "3.1.1", |
102 | | - "esdoc": "1.1.0", |
103 | | - "esdoc-ecmascript-proposal-plugin": "1.0.0", |
104 | | - "esdoc-inject-script-plugin": "1.0.0", |
105 | | - "esdoc-inject-style-plugin": "1.0.0", |
106 | | - "esdoc-standard-plugin": "1.0.0", |
107 | | - "np": "7.6.2", |
108 | | - "nyc": "15.1.0", |
109 | | - "power-assert": "1.6.1", |
110 | | - "regenerator-runtime": "0.13.10", |
111 | | - "xo": "0.52.4", |
112 | | - "fixpack": "4.0.0" |
113 | | - }, |
114 | | - "files": [ |
115 | | - "lib" |
116 | | - ], |
117 | | - "homepage": "https://data-structures-and-algorithms.github.io/skip-list", |
118 | | - "keywords": [ |
119 | | - "data", |
120 | | - "list", |
121 | | - "randomized", |
122 | | - "skip", |
123 | | - "skip-list", |
124 | | - "skiplist", |
125 | | - "structures" |
126 | | - ], |
127 | | - "license": "AGPL-3.0", |
128 | | - "main": "lib/index.js", |
129 | 147 | "prettier": { |
130 | 148 | "trailingComma": "all" |
131 | 149 | }, |
132 | | - "repository": { |
133 | | - "type": "git", |
134 | | - "url": "https://github.com/data-structures-and-algorithms/skip-list" |
135 | | - }, |
136 | | - "scripts": { |
137 | | - "build": "babel --delete-dir-on-start --env-name production src -d lib", |
138 | | - "cover": "nyc --reporter=lcov npm test", |
139 | | - "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
140 | | - "esdoc": "esdoc", |
141 | | - "lint": "xo", |
142 | | - "prepare": "npm run build", |
143 | | - "release": "np", |
144 | | - "test": "ava", |
145 | | - "travis": "npm run lint && npm run cover", |
146 | | - "lint-config-and-fix": "fixpack || fixpack", |
147 | | - "lint-config": "fixpack --dryRun" |
148 | | - }, |
149 | | - "sideEffects": false, |
150 | 150 | "xo": { |
151 | 151 | "prettier": true, |
152 | 152 | "plugins": [ |
|
0 commit comments