-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 1.71 KB
/
package.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "quetie",
"version": "1.0.0",
"author": {
"name": "Tomer Aberbach",
"email": "[email protected]",
"url": "https://tomeraberba.ch"
},
"description": "Just the cutest and tiniest queue/deque implementation!",
"keywords": [
"queue",
"deque",
"double-ended",
"data",
"structure",
"algorithm",
"queues",
"queuing",
"list",
"array",
"stack",
"fifo",
"lifo",
"enqueue",
"dequeue",
"push",
"pop",
"unshift",
"shift"
],
"homepage": "https://github.com/TomerAberbach/quetie",
"repository": "TomerAberbach/quetie",
"bugs": {
"url": "https://github.com/TomerAberbach/quetie/issues"
},
"license": "Apache-2.0",
"files": [
"dist",
"src/index.d.ts"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.min.cjs",
"import": "./dist/index.min.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.min.cjs",
"module": "./dist/index.min.js",
"scripts": {
"prepare": "tomer install",
"format": "tomer format",
"lint": "tomer lint",
"typecheck": "tomer typecheck",
"test": "tomer test",
"build": "tomer build",
"clean": "tomer clean dist",
"prepublishOnly": "tomer build"
},
"prettier": "tomer/prettier",
"terser": {
"mangle": {
"properties": {
"regex": "^_[^_]+"
}
}
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"tomer": "^3.2.4",
"typescript": "^5.5.2"
}
}