-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@writetome51/sort-by-property",
"version": "1.0.0",
"description": "Sorts array of objects by the value of a particular property",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/sort-by-property.git"
},
"keywords": [
"sort",
"sorter",
"objects",
"object",
"property",
"numerically",
"alphabetically"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/sort-by-property/issues"
},
"homepage": "https://github.com/writetome51/sort-by-property#readme",
"devDependencies": {
"@writetome51/arrays-match": "^2.0.1",
"@writetome51/get-array-from-property": "^2.0.1"
},
"dependencies": {
"@writetome51/alphabetize": "^2.0.0",
"@writetome51/order-numerically": "^1.0.0",
"@writetome51/get-property": "^2.0.1",
"error-if-length-is-zero": "^1.0.1"
}
}