-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 979 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
{
"name": "short-hash-ts",
"version": "1.0.2",
"description": "Get a quick hash that uses the well-liked Bernstein \"times 33\" hash method and delivers a hex string.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"preferGlobal": true,
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/younisrahman/short-hash-ts.git"
},
"keywords": [
"hash",
"hash-ts",
"short-hash",
"short-hash-ts",
"shorthash",
"shorthash-ts"
],
"author": {
"name": "Younis Rahman",
"email": "[email protected]",
"url": "https://younisrahman.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/younisrahman/short-hash-ts/issues"
},
"homepage": "https://github.com/younisrahman/short-hash-ts#readme",
"devDependencies": {
"@types/node": "^18.7.14",
"typescript": "^4.8.2"
},
"files": [
"lib/**/*"
]
}