-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
41
{
"name": "hashable-cli",
"version": "1.1.3",
"description": "Generate consistent hashable JSON payload, great for piping through hash functions. Works in CLI and is importable",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chernjie/hashable.git"
},
"author": "CJ Lim <lim@chernjie.com>",
"main": "src/utils/hashable.js",
"scripts": {
"build": "cp ./src/utils/hashable.js ./docs && cp ./config/priority.json ./docs",
"docs": "npm run build && node ./docs",
"test": "jest"
},
"bin": {
"hashable-cli": "./bin/hashable",
"hashable": "./bin/hashable"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"express": "^4.18.1",
"jest": "^28.1.3"
},
"bugs": {
"url": "https://github.com/chernjie/hashable/issues"
},
"homepage": "https://github.com/chernjie/hashable#readme",
"keywords": [
"stable",
"sort",
"deterministic",
"hashable-cli",
"hashable",
"json",
"command-line",
"cli",
"hash"
]
}