-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.01 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.01 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
{
"name": "stringx-js",
"version": "1.1.3",
"description": "A comprehensive JavaScript library for string, number, and array manipulation inspired by Laravel. Includes 95+ string methods, 25+ number formatters, and 60 array utilities with fluent chaining, dot notation, and TypeScript support.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node --test src/tests/*.test.js",
"test:watch": "node --test --watch src/tests/*.test.js",
"prepublishOnly": "npm test"
},
"keywords": [
"string",
"number",
"array",
"laravel",
"str",
"arr",
"utility",
"helper",
"javascript",
"typescript",
"es6",
"string-manipulation",
"number-formatting",
"array-manipulation",
"array-utils",
"array-helpers",
"dot-notation",
"nested-objects",
"currency",
"percentage",
"filesize",
"abbreviate",
"ordinal",
"uuid",
"ulid",
"camelcase",
"snakecase",
"kebabcase",
"slug",
"pluralize",
"validation",
"password-generator",
"string-utils",
"fluent",
"chaining",
"method-chaining",
"stringable",
"intl",
"locale",
"i18n",
"multilingual",
"n2words",
"spell-number",
"number-to-words",
"pluck",
"map",
"filter",
"flatten",
"collection"
],
"author": "Ayman Atmeh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AymanAtmeh/stringx-js.git"
},
"bugs": {
"url": "https://github.com/AymanAtmeh/stringx-js/issues"
},
"homepage": "https://www.stringx-js.com/",
"dependencies": {
"n2words": "^1.21.0",
"uuid": "^11.0.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.js",
"index.d.ts",
"src/Str.js",
"src/Str.d.ts",
"src/Stringable.js",
"src/Stringable.d.ts",
"src/Number.js",
"src/Number.d.ts",
"src/Arr.js",
"src/Arr.d.ts",
"src/helpers.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}