-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 785 Bytes
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
{
"name": "rolling-math",
"version": "0.0.3",
"description": "A math library that computes simple moving average and standard deviation on a rolling window.",
"main": "src/rolling.math.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arbitraryexecution/rolling-math.git"
},
"author": "Arbitrary Execution",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/arbitraryexecution/rolling-math/issues"
},
"homepage": "https://github.com/arbitraryexecution/rolling-math#readme",
"dependencies": {
"bignumber.js": "^9.0.2",
"jest": "^27.0.6"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2"
}
}