-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@jitesoft/group-by",
"description": "Makes all entries of an array - which returns a given key from callback - grouped under its key in resulting object.",
"main": "dist/index.js",
"esnext": "src/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "eslint && jest",
"build:prod": "cross-env NODE_ENV=production webpack && babel src/index.js -o dist/index.mjs --compact true"
},
"types": "group-by.d.ts",
"bugs": {
"url": "https://gitlab.com/jitesoft/open-source/javascript/group-by/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/jitesoft/open-source/javascript/group-by"
},
"private": false,
"keywords": [
"array",
"object",
"group",
"group-by",
"map",
"jitesoft"
],
"author": {
"name": "Johannes Tegnér",
"email": "[email protected]",
"url": "https://jitesoft.com"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.23.6"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@jitesoft/babel-preset-main": "^5.4.0",
"@jitesoft/eslint-config": "^4.2.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}