-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ts-deepmerge",
"type": "module",
"license": "ISC",
"version": "7.0.2",
"scripts": {
"clean": "rimraf ./{cjs,esm}/!(package.json)",
"compile": "yarn clean && yarn compile:esm && yarn compile:cjs",
"compile:watch": "yarn clean && concurrently --kill-others \"yarn compile:esm --watch\" \"yarn compile:cjs --watch\"",
"compile:esm": "yarn tsc --project tsconfig.esm.json",
"compile:cjs": "yarn tsc --project tsconfig.cjs.json",
"prepack": "yarn compile",
"format": "prettier --write \"**/*.{json,ts,tsx}\"",
"lint": "eslint \"./src/**/*.ts?(x)\"",
"lint:fix": "yarn format && yarn lint --fix",
"typecheck": "tsc --noEmit",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:all": "yarn lint:fix && yarn typecheck && yarn test --coverage"
},
"author": "Raice Hannay <[email protected]>",
"description": "A TypeScript deep merge function.",
"keywords": [
"typescript",
"deep",
"merge",
"types",
"ts-merge",
"ts-deepmerge",
"merging",
"deep",
"deepmerge",
"deep-merge",
"recursive",
"recursive-merge"
],
"repository": {
"type": "git",
"url": "[email protected]:voodoocreation/ts-deepmerge.git"
},
"bugs": "https://github.com/voodoocreation/ts-deepmerge/issues",
"homepage": "https://github.com/voodoocreation/ts-deepmerge#readme",
"engines": {
"node": ">=14.13.1"
},
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"files": [
"**/package.json",
"**/index.js",
"**/*.d.ts"
],
"types": "./cjs/index.d.ts",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"devDependencies": {
"@types/jest": "^29.5.14",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-voodoocreation": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}