-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 923 Bytes
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": "forgeid",
"version": "1.0.2",
"description": "Scalable and secure unique ID generator with HMAC verification and time-based growth.",
"main": "dist/forgeid.min.js",
"types": "dist/forgeid.d.ts",
"scripts": {
"build": "webpack && cp src/forgeid.d.ts dist/",
"benchmark": "node benchmark/benchmark.js",
"test": "mocha"
},
"files": [
"dist/"
],
"keywords": [
"id",
"uuid",
"unique-id",
"secure-id",
"hmac",
"generator",
"forgeid"
],
"author": "NeaByteLab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/ForgeID.git"
},
"homepage": "https://www.npmjs.com/package/forgeid",
"bugs": {
"url": "https://github.com/NeaByteLab/ForgeID/issues"
},
"devDependencies": {
"chai": "^5.2.0",
"mocha": "^11.7.1",
"terser-webpack-plugin": "^5.3.14",
"webpack-cli": "^6.0.1"
}
}