-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@aeinbu/groupby",
"version": "0.0.0",
"description": "Lightweight and non-intrusive functions for doing \"group by\" type transformations on collections using reducers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*", "src/**/*"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest --config jestconfig.json",
"test-watch": "jest --config jestconfig.json --watch",
"build": "tsc",
"prepare": "npm run build",
"version": "git add package.json",
"lint-autofix": "eslint --fix src/**/* tests/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeinbu/groupby.git"
},
"keywords": [
"groupby", "group by",
"grouping",
"dictionary",
"map"
],
"author": "Arjan Einbu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aeinbu/groupby/issues"
},
"homepage": "https://github.com/aeinbu/groupby#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}