-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 975 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
{
"name": "simpleflakes",
"version": "2.2.2",
"description": "Fast, and reliable, distributed 64-bit ID generation, in pure JavaScript, for Node.js.",
"main": "index.js",
"scripts": {
"test": "tape tests/**/*.js | faucet",
"benchmark": "node benchmark/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leodutra/simpleflakes.git"
},
"keywords": [
"simpleflake",
"snowflake",
"id",
"sql",
"nosql",
"flake",
"bigint",
"shards",
"partition"
],
"author": {
"name": "Leonardo Dutra",
"email": "leodutra.br@gmail.com",
"url": "https://github.com/leodutra"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/leodutra/simpleflakes/issues"
},
"homepage": "https://github.com/leodutra/simpleflakes#readme",
"dependencies": {
"bn.js": "^5.2.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"faucet": "^0.0.1",
"tape": "^5.3.1"
}
}