-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "@writetome51/order-numerically",
"version": "1.0.0",
"description": "Function takes an array of numbers and returns new array with numbers in numeric order",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/order-numerically.git"
},
"keywords": [
"numbers",
"array",
"fast",
"sort",
"sorting",
"ascending",
"order",
"numeric",
"function"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/order-numerically/issues"
},
"homepage": "https://github.com/writetome51/order-numerically#readme",
"devDependencies": {
"@writetome51/array-get-shuffled": "^2.0.1",
"@writetome51/arrays-match": "^2.0.1",
"@writetome51/get-array-from-property": "^2.0.1"
},
"dependencies": {
"timsort": "^0.3.0"
}
}