-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "random-walk",
"version": "1.1.0",
"description": "Generate a stream of trend-oriented random numbers using a Box Muller transform. Useful for generating sample stock or crypto prices for analysis and testing algo trading applications, or any other application that needs a stream of trend-oriented random numbers.",
"main": "random-walk.js",
"dependencies": {
"bent": "^7.3.12",
"events": "^3.2.0",
"socket.io": "^2.5.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/draeder/random-walk.git"
},
"keywords": [
"random walk",
"random walk stream",
"normalized random walk",
"trading",
"stock",
"crypto",
"market simulation",
"statistics",
"Box Müller"
],
"author": "Daniel Raeder",
"license": "ISC",
"bugs": {
"url": "https://github.com/draeder/random-walk/issues"
},
"homepage": "https://github.com/draeder/random-walk#readme",
"directories": {
"test": "tests"
}
}