-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 968 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 968 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
29
30
31
32
33
34
{
"name": "statistical-aggregation",
"description": "A library for computing statistical aggregations which are composable and augmentable",
"version": "0.2.1",
"license": "MIT",
"homepage": "https://github.com/jason00111/statistical-aggregation#readme.md",
"url": "https://github.com/jason00111/statistical-aggregation/issues",
"keywords": [
"aggregate",
"aggregation",
"statistical aggregation",
"parallel",
"composable"
],
"dependencies": {
"bignumber.js": "^9.0.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"test": "tsc --target 'ES2017' --esModuleInterop --module 'CommonJS' test/index.test.ts && mocha test"
}
}