-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 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
{
"name": "smob",
"version": "1.5.0",
"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.2.3",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.29",
"@tada5hi/commitlint-config": "^1.2.0",
"@tada5hi/eslint-config-typescript": "^1.2.10",
"@tada5hi/semantic-release": "^0.3.1",
"@tada5hi/tsconfig": "^0.5.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.10.4",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.6.1",
"rollup": "^4.13.2",
"semantic-release": "^23.0.6",
"typescript": "^5.4.3"
}
}