forked from luchyio/uuid-by-string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 939 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
43
44
45
46
{
"name": "@forwardemail/uuid-by-string",
"version": "5.0.0",
"description": "Generating uuid-hash from string",
"main": "src/index.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint",
"prepublishOnly": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danakt/uuid-by-string.git"
},
"keywords": [
"uuid",
"guid",
"rfc4122",
"rfc-4122",
"hash",
"v3",
"v5",
"md5",
"sha-1"
],
"author": "Danakt Saushkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Danakt/uuid-by-string/issues"
},
"homepage": "https://github.com/Danakt/uuid-by-string",
"jest": {
"testMatch": [
"**/tests/*.+(ts|tsx|js)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"devDependencies": {
"eslint": "^8.24.0",
"jest": "^29.1.2"
}
}