-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@tamtamchik/json-deep-sort",
"version": "1.3.0",
"description": "A comprehensive utility for sorting JSON objects by keys.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./src/index.ts",
"author": "Yuri Tkachenko <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tamtamchik/json-deep-sort#readme",
"bugs": {
"url": "https://github.com/tamtamchik/json-deep-sort/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tamtamchik/json-deep-sort.git"
},
"keywords": [
"json",
"sort",
"json-sort",
"keysort",
"json-keysort",
"json-deep-sort",
"sorting",
"typescript",
"async-sort",
"synchronous-sort",
"json-manipulation",
"data-processing",
"json-utility",
"json-tools"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./src/index.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --clean",
"dev": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
}
}