-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "@fawazahmed/js-infinite-median",
"version": "0.0.1",
"description": "Calculate median of a stream of numbers using heap sort (with nlogn comlpexity).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build" : "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fawaz-ahmed/js-infinite-median.git"
},
"files": [
"dist"
],
"keywords": [
"median",
"running median",
"infinite median",
"stream of numbers",
"javascript",
"typescript",
"library",
"tool",
"math",
"crypto",
"price calculations",
"volatile price"
],
"author": {
"name": "Fawaz Ahmed",
"email": "fawaz_ahmed@live.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fawaz-ahmed/js-infinite-median/issues"
},
"homepage": "https://github.com/fawaz-ahmed/js-infinite-median#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@datastructures-js/heap": "^4.1.0"
},
"devDependencies": {
"typescript": "^4.7.3"
}
}