forked from fastify/deepmerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 997 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
42
43
44
45
46
47
48
49
50
51
{
"name": "@victr/deepmerge",
"version": "1.3.2",
"description": "Merges the enumerable properties of two or more objects deeply.",
"main": "index.js",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"test": "pnpm test:unit && pnpm test:typescript",
"test:unit": "tap tests/**/*.test.js",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victrme/deepmerge.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/victrme/deepmerge/issues"
},
"homepage": "https://github.com/victrme/deepmerge#readme",
"devDependencies": {
"tap": "^16.3.0",
"tape": "^5.6.1",
"tsd": "^0.27.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"keywords": [
"merge",
"deep",
"recursive",
"object"
],
"prettier": {
"tabWidth": 4,
"useTabs": true,
"semi": false,
"printWidth": 120
}
}