72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "smob",
|
|
"version": "1.4.1",
|
|
"description": "Zero dependency library to safe merge objects.",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:js": "rollup -c",
|
|
"build": "rimraf dist && npm run build:types && npm run build:js",
|
|
"commit": "npx git-cz",
|
|
"lint": "eslint --ext .js,.ts ./src",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
|
|
"test:coverage": "npm run test -- --coverage",
|
|
"prepare": "npx husky install",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"author": {
|
|
"name": "Peter Placzek",
|
|
"email": "contact@tada5hi.net",
|
|
"url": "https://github.com/tada5hi"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"object",
|
|
"object-merge",
|
|
"merge",
|
|
"safe",
|
|
"deep-merge",
|
|
"merge-deep"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Tada5hi/smob.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Tada5hi/smob/issues"
|
|
},
|
|
"homepage": "https://github.com/Tada5hi/smob#readme",
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
"@swc/core": "^1.3.70",
|
|
"@swc/jest": "^0.2.26",
|
|
"@tada5hi/commitlint-config": "^1.0.2",
|
|
"@tada5hi/eslint-config-typescript": "^1.1.9",
|
|
"@tada5hi/semantic-release": "^0.1.0",
|
|
"@tada5hi/tsconfig": "^0.4.0",
|
|
"@types/jest": "^29.5.3",
|
|
"@types/node": "^20.2.5",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.49.0",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.6.1",
|
|
"rollup": "^3.23.0",
|
|
"semantic-release": "^21.0.7",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|