-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@lopatnov/join",
"version": "2.1.0",
"license": "Apache-2.0",
"author": "lopatnov",
"description": "SQL-like join operations for JavaScript objects — merge two objects using 9 composable join types (left, right, inner, full and more) with deep merge support.",
"homepage": "https://lopatnov.github.io/join/",
"keywords": [
"TypeScript",
"javascript",
"library",
"typescript-library",
"join",
"sql-join",
"object-join",
"object-merge",
"deep-merge",
"merge",
"left-join",
"right-join",
"inner-join",
"full-join",
"bitwise",
"functional",
"currying",
"utility"
],
"umdName": "join",
"libraryFile": "join",
"main": "dist/join.cjs",
"module": "dist/join.esm.mjs",
"browser": "dist/join.umd.js",
"types": "dist/join.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lopatnov/join.git"
},
"bugs": {
"url": "https://github.com/lopatnov/join/issues"
},
"exports": {
".": {
"types": "./dist/join.d.ts",
"browser": "./dist/join.umd.js",
"import": "./dist/join.esm.mjs",
"require": "./dist/join.cjs",
"default": "./dist/join.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"watch": "rollup -cw rollup.config.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.{ts,js}\"",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lopatnov/rollup-plugin-uglify": "^4.1.3",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"terser": "^5.46.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}