-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
148 lines (148 loc) · 3.7 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "bloom-filters",
"version": "3.0.4",
"description": "JS implementation of probabilistic data structures: Bloom Filter (and its derived), HyperLogLog, Count-Min Sketch, Top-K and MinHash",
"main": "dist/api.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"pretest": "yarn lint && yarn build",
"test": "mocha test/**/*-test.js --trace-deprecation --timeout=60000",
"doc": "typedoc --sort alphabetical --out docs/ --emit both --includeVersion src/api.ts",
"lint": "yarn prettier && yarn slint",
"slint": "eslint --fix src/**/*.ts",
"prettier": "prettier --config package.json --write \"(src|test)/**/*.(t|j)s\"",
"clean": "rimraf docs/ dist/ build/",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Callidon/bloom-filters.git"
},
"keywords": [
"bloom",
"filter",
"bloom filter",
"probabilistic",
"datastructure",
"partitionned bloom filter",
"scalable bloom filter",
"counting bloom filter",
"invertible bloom filter",
"count min sketch",
"cuckoo",
"xor",
"minhash",
"top-k",
"hyperloglog"
],
"author": "Thomas Minier <[email protected]>",
"contributors": [
"Arnaud Grall <[email protected]>",
"Jonah H. Harris <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Callidon/bloom-filters/issues"
},
"homepage": "https://github.com/Callidon/bloom-filters#readme",
"devDependencies": {
"@types/cuint": "^0.2.X",
"@types/lodash": "^4.17.13",
"@types/node": "^17.0.17",
"@types/xxhashjs": "^0.2.X",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"random": "^3.0.6",
"rimraf": "^3.0.2",
"typedoc": "^0.22.11",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/seedrandom": "^3.0.8",
"base64-arraybuffer": "^1.0.2",
"is-buffer": "^2.0.5",
"lodash": "^4.17.21",
"long": "^5.2.0",
"reflect-metadata": "^0.1.13",
"seedrandom": "^3.0.5",
"xxhashjs": "^0.2.2"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"endOfLine": "auto",
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2015,
"project": "tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:node/recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"globals": {
"chai": "readonly",
"it": "readonly",
"expect": "readonly",
"describe": "readonly"
},
"settings": {
"node": {
"allowModules": [],
"resolvePaths": [
"./src"
],
"tryExtensions": [
".ts",
".js"
]
}
},
"rules": {
"node/no-unsupported-features/es-syntax": [
"error",
{
"ignores": [
"modules"
]
}
],
"node/no-unpublished-require": [
"error",
{
"allowModules": [
"mocha",
"chai",
"random"
]
}
]
}
},
"engines": {
"node": ">=12"
}
}