-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 935 Bytes
/
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
{
"name": "array-join",
"version": "3.2.1",
"description": "Join (SQL-like) two iterables by a common key.",
"repository": {
"type": "git",
"url": "git+https://github.com/iredchuk/array-join"
},
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": {
"name": "Igor Redchuk",
"email": "redchuk@gmail.com"
},
"keywords": [
"array",
"arrays",
"iterable",
"join",
"left-join",
"full-join",
"util"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "tsx --test --experimental-test-coverage test/*.test.ts",
"test:watch": "tsx --test --watch test/*.test.ts",
"build": "tsc -p tsconfig.build.json",
"prepare": "npm test && npm run build"
},
"devDependencies": {
"@types/node": "^22.5.2",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}