-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 KB
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
{
"name": "array-means",
"version": "0.0.0-development",
"description": "Calculates various averages of an array",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"files": [
"dist/"
],
"sideEffects": false,
"scripts": {
"commit": "cz",
"test": "jest",
"test:coverage": "jest --coverage",
"benchmark": "ts-node scripts/benchmark.ts",
"build": "node scripts/build.js",
"prepare": "node scripts/build.js",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"semantic-release": "semantic-release",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "https://github.com/Bikossor/array-means.git"
},
"keywords": [
"array",
"mean",
"means",
"average",
"averages",
"avg",
"arithmetic",
"quadratic",
"harmonic",
"geometric",
"cubic",
"math",
"number",
"numbers"
],
"author": "André Lichtenthäler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bikossor/array-means/issues"
},
"homepage": "https://github.com/Bikossor/array-means#readme",
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"benchmark": "2.1.4",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.23.1",
"eslint-plugin-functional": "^4.3.1",
"jest": "^27.4.7",
"prettier": "2.5.1",
"semantic-release": "^21.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tsutils": "^3.21.0",
"typescript": "^4.5.5"
}
}