-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 971 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": "keyspace",
"version": "0.0.1",
"description": "Get keys and values based on a probability distribution and seed.",
"license": "MIT",
"author": "Vincent Weevers",
"scripts": {
"test": "standard && hallmark && node test",
"hallmark": "hallmark --fix"
},
"files": [
"index.js",
"example.png"
],
"dependencies": {
"lexicographic-integer": "~1.1.0",
"pseudo-math-random": "~1.0.0",
"pseudo-random-buffer": "~1.0.0",
"uniform-integer": "~1.0.0",
"zipfian-integer": "~1.0.1"
},
"devDependencies": {
"hallmark": "^3.1.0",
"standard": "^14.0.0",
"tape": "^4.10.2"
},
"keywords": [
"benchmark",
"database",
"distribution",
"keys",
"level",
"random",
"values",
"zipfian"
],
"engines": {
"node": ">=8"
},
"repository": "vweevers/keyspace",
"bugs": "https://github.com/vweevers/keyspace/issues",
"homepage": "https://github.com/vweevers/keyspace"
}