You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
941 B

{
"name": "@fastify/deepmerge",
"version": "1.3.0",
"description": "Merges the enumerable properties of two or more objects deeply.",
"main": "index.js",
"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.0.0",
"tap": "^16.3.0",
"tape": "^5.6.1",
"tsd": "^0.24.1"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"types/index.d.ts"
],
"keywords": [
"merge",
"deep",
"recursive",
"object"
]
}