-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1013 Bytes
/
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
{
"name": "deterministic-object-hash",
"version": "2.0.2",
"description": "A deterministic object hashing algorithm for Node.js.",
"main": "dist/index.js",
"scripts": {
"test": "npx jest",
"build": "npx tsc -b ./",
"ts-watch": "npx tsc -b --watch ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zbauman3/Deterministic-Object-Hash.git"
},
"keywords": [
"deterministic",
"object",
"hash",
"algorithm"
],
"author": "Zane Bauman",
"license": "MIT",
"bugs": {
"url": "https://github.com/zbauman3/Deterministic-Object-Hash/issues"
},
"homepage": "https://github.com/zbauman3/Deterministic-Object-Hash#readme",
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "18.18.9",
"jest": "^27.4.7",
"lodash": "^4.17.21",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"base-64": "^1.0.0"
}
}