-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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": "hashable-cli",
"version": "2.0.1",
"type": "module",
"description": "Generate consistent and predictable JSON output for hashing, version control, and testing. Sorts arrays based on a configurable priority list of fields, handles nested objects and arrays, and optionally sorts object keys alphabetically. Provides a command-line interface, can be imported as a Node.js module, and works seamlessly in web browsers. Ideal for ensuring data integrity, simplifying comparisons, and generating stable hashes for JSON data.",
"repository": {
"type": "git",
"url": "git+https://github.com/chernjie/hashable.git"
},
"author": "CJ Lim <[email protected]>",
"main": "./src/utils/hashable.js",
"exports": {
".": "./src/utils/hashable.js"
},
"scripts": {
"build": "cp ./src/utils/hashable.js ./docs",
"docs": "npm run build && node ./docs",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"bin": {
"hashable-cli": "./bin/hashable",
"hashable": "./bin/hashable"
},
"license": "MIT",
"devDependencies": {
"express": "^4.18.1",
"jest": "^29.7.0"
},
"keywords": [
"stable",
"sort",
"deterministic",
"hashable-cli",
"hashable",
"json",
"command-line",
"cli",
"hash"
]
}