UNPKG

799 BJSONView Raw
1{
2 "name": "sort-keys",
3 "version": "5.0.0",
4 "description": "Sort the keys of an object",
5 "license": "MIT",
6 "repository": "sindresorhus/sort-keys",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": ">=12"
17 },
18 "scripts": {
19 "test": "xo && ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "sort",
27 "object",
28 "keys",
29 "key",
30 "stable",
31 "deterministic",
32 "deep",
33 "recursive",
34 "recursively",
35 "array",
36 "sorted",
37 "sorting"
38 ],
39 "dependencies": {
40 "is-plain-obj": "^4.0.0"
41 },
42 "devDependencies": {
43 "ava": "^3.15.0",
44 "tsd": "^0.14.0",
45 "xo": "^0.38.2"
46 }
47}