forked from dailker/everyutil-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.65 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 2.65 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "everyutil",
"version": "1.0.1",
"description": "A collection of utility functions for everyday programming tasks.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --passWithNoTests",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dailkker/everyutil.git"
},
"author": "Ilker Dail",
"license": "MIT",
"bugs": {
"url": "https://github.com/dailkker/everyutil/issues"
},
"homepage": "https://github.com/dailkker/everyutil#readme",
"dependencies": {
"@ltd/j-toml": "^1.38.0",
"adm-zip": "^0.5.16",
"ajv": "^8.17.1",
"chokidar": "^4.0.3",
"diskusage": "^1.2.0",
"exif-parser": "^0.1.12",
"fluent-ffmpeg": "^2.1.3",
"http-proxy": "^1.18.1",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"jschardet": "^3.1.4",
"mime-types": "^3.0.1",
"proper-lockfile": "^4.1.2",
"sharp": "^0.34.2",
"typescript": "^4.0.0"
},
"keywords": [
"utility",
"functions",
"everyday",
"programming",
"lodash",
"toolkit",
"array",
"number",
"string",
"unicode",
"text",
"words",
"math",
"statistical",
"entropy",
"random",
"normalize",
"natural language",
"nlp",
"similarity",
"levenshtein",
"slugify",
"slug",
"palindrome",
"tokenize",
"tokenizer",
"detokenize",
"word chunking",
"ascii",
"ascii art",
"sparkline",
"histogram",
"number theory",
"digital root",
"prime factor",
"factors",
"kaprekar",
"collatz",
"modulo",
"wrap",
"clamp",
"snap to",
"weighted random",
"gaussian",
"cumulative sum",
"delta",
"rolling average",
"moving average",
"standard deviation",
"interquartile range",
"median",
"outlier detection",
"array clustering",
"vectorize",
"semantic analysis",
"language detection",
"unicode blocks",
"unicode scripts",
"regex utils",
"emoji",
"emoji detection",
"text classification",
"pattern detection",
"fuzzy match",
"text formatting",
"creative coding",
"text effects",
"case alternation",
"random case",
"wave text",
"obscure email"
],
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/http-proxy": "^1.17.16",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^14.18.63",
"@types/proper-lockfile": "^4.1.4",
"@types/sharp": "^0.31.1",
"jest": "^30.0.3",
"ts-jest": "^29.4.0"
}
}