-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 2.04 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@oresoftware/linked-queue",
"version": "3.1.11",
"description": "Synchronous queue implementation with constant/linear time operations.",
"main": "./dist/linked-queue.js",
"module": "./dist/esm/linked-queue.js",
"types": "./dist/linked-queue.d.ts",
"typings": "./dist/linked-queue.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/linked-queue.d.ts",
"import": "./dist/esm/linked-queue.js",
"require": "./dist/linked-queue.js",
"default": "./dist/esm/linked-queue.js"
}
},
"files": [
"dist",
"readme.md",
"license.md"
],
"sideEffects": false,
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "node --test test/node-test/*.test.js",
"test:core": "node --test test/node-test/core.test.js",
"test:iterators": "node --test test/node-test/iterators.test.js",
"test:edge": "node --test test/node-test/edge-cases.test.js",
"test:fuzz": "node --test test/node-test/fuzz.test.js",
"test:internal": "node --test test/node-test/internal.test.js",
"test:internal:standalone": "node test/internal/linked-list-integrity.js && node test/internal/head-tail-fuzz.js && node test/internal/lookup-consistency.js",
"test:legacy": "node test/src/test-fuzz.js && node test/src/linked-queue-fuzz.js && node test/src/queue-fuzz.js && node test/src/basic-queue-fuzz.js",
"test:all": "npm run test && npm run test:internal:standalone && npm run test:legacy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/linked-queue.git"
},
"keywords": [
"linked",
"queue",
"doubly",
"linked",
"linear",
"constant"
],
"author": "Olegzandr VD",
"license": "MIT",
"bugs": {
"url": "https://github.com/ORESoftware/linked-queue/issues"
},
"homepage": "https://github.com/ORESoftware/linked-queue#readme",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"uuid": "^11.0.3"
},
"r2g": {
"test": "echo noop"
}
}