-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "@writetome51/alphabetize",
"version": "2.0.1",
"description": "Orders an array alphabetically. Optional callback allows you to choose what value in each element to sort by",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/alphabetize.git"
},
"keywords": [
"string",
"strings",
"array",
"sort",
"sorting",
"alphabet",
"alphabetize",
"alphabetical",
"order",
"ordering",
"english",
"function"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/alphabetize/issues"
},
"homepage": "https://github.com/writetome51/alphabetize#readme",
"devDependencies": {
"@writetome51/get-array-copy": "^1.0.0",
"@writetome51/get-array-from-property": "^2.0.1",
"@writetome51/arrays-match": "^2.0.1"
},
"dependencies": {
"@writetome51/to-str": ">=0.0.1"
}
}