@ohos-ports/doublylinked 2.5.6-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@ohos-ports/doublylinked",
3
+ "description": "Doubly linked list implementation for JavaScript with iterator and array-like interface (HarmonyOS port with iterator/reduce bug fixes)",
4
+ "version": "2.5.6-beta.1",
5
+ "author": "Panates Ltd.",
6
+ "contributors": [
7
+ "Eray Hanoglu <e.hanoglu@panates.com>"
8
+ ],
9
+ "main": "lib/doubly-linked.js",
10
+ "types": "./lib/doubly-linked.d.ts",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/ohos-ports/ohos-ports.git",
15
+ "directory": "ports/doublylinked/2.5.6"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/ohos-ports/ohos-ports/issues"
19
+ },
20
+ "keywords": [
21
+ "javascript",
22
+ "doubly",
23
+ "linked",
24
+ "list",
25
+ "doubly linked list",
26
+ "harmonyos",
27
+ "ohos-ports"
28
+ ],
29
+ "engines": {
30
+ "node": ">= 16.0"
31
+ },
32
+ "directories": {
33
+ "lib": "./lib"
34
+ },
35
+ "files": [
36
+ "LICENSE",
37
+ "README.md",
38
+ "lib/"
39
+ ]
40
+ }