generated from fastify/skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 963 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
{
"name": "@fastify/deepmerge",
"version": "1.3.0",
"description": "Merges the enumerable properties of two or more objects deeply.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/deepmerge.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/deepmerge/issues"
},
"homepage": "https://github.com/fastify/deepmerge#readme",
"devDependencies": {
"standard": "^17.1.0",
"tap": "^18.7.1",
"tape": "^5.7.5",
"tsd": "^0.30.7"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"types/index.d.ts"
],
"keywords": [
"merge",
"deep",
"recursive",
"object"
]
}