-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
40 lines (40 loc) · 860 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
{
"name": "flake-idgen",
"version": "1.4.0",
"description": "Flake ID generator yields k-ordered, conflict-free ids in a distributed environment",
"main": "flake-id-gen.js",
"scripts": {
"test": "npx nyc@latest mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/T-PWK/flake-idgen.git"
},
"contributors": [],
"keywords": [
"id",
"unique",
"twitter",
"snowflake",
"flake",
"distributed"
],
"author": {
"name": "Tom Pawlak",
"url": "https://blog.abelotech.com/"
},
"homepage": "https://github.com/T-PWK/flake-idgen",
"licenses": [
{
"type": "MIT",
"url": "https://blog.abelotech.com/mit-license/"
}
],
"bugs": {
"url": "https://github.com/T-PWK/flake-idgen/issues"
},
"devDependencies": {
"nyc": "^15.1.0",
"mocha": "^10.0.0"
}
}