-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.78 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
{
"name": "math-helper-functions",
"version": "3.2.0",
"description": "Helper with misc. math functions such as sums, averages, max, min, etc",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"author": "Alberto Rico",
"license": "MIT",
"repository": {
"url": "https://github.com/alrico88/math-helper-functions"
},
"keywords": [
"math",
"node",
"helper",
"sum",
"average",
"min",
"max",
"mean",
"weighted",
"percent",
"domain",
"quartile",
"histogram"
],
"devDependencies": {
"@types/d3-array": "^2.9.0",
"@types/dlv": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"coveralls": "^3.1.1",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"tsup": "^7.2.0",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"d3-array": "^2.0.3",
"dlv": "^1.1.3",
"number-helper-functions": "^4.1.1"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"dev": "pnpm run build -- --watch src",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.js src",
"prepublish": "pnpm run build",
"docs": "typedoc src/index.ts --plugin typedoc-plugin-markdown --out docs --gitRevision master"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run lint"
}
},
"sideEffects": false
}