-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "@empathyco/x-deep-merge",
"version": "2.0.3-alpha.2",
"description": "Utility for deep cloning objects.",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x/tree/main/packages/deep-merge#readme",
"keywords": [
"deep",
"merge",
"assign",
"clone",
"copy"
],
"main": "./dist/cjs/deep-merge.js",
"module": "./dist/esm/deep-merge.js",
"types": "./types/deep-merge.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/empathyco/x.git",
"directory": "packages/deep-merge"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "pnpm run clean",
"build": "tsc && tsc --project tsconfig.esm.json",
"clean": "rimraf dist && rimraf coverage",
"postbuild": "pnpm pack",
"lint": "eslint . --ext .ts",
"prepublishOnly": "pnpm run build",
"test": "jest",
"test-unit": "jest"
},
"dependencies": {
"@empathyco/x-utils": "^1.0.3-alpha.2",
"tslib": "~2.6.0"
},
"devDependencies": {
"@types/jest": "27.5.0",
"jest": "27.5.0",
"rimraf": "3.0.2",
"ts-jest": "27.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"publishConfig": {
"access": "public"
}
}