-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "@savla-dev/object-merge",
"version": "1.0.15",
"description": "A utility for deeply merging two JS/TS objects into one.",
"repository": "https://github.com/savla-dev/object-merge",
"main": "dist/merge.js",
"keywords": [
"merge",
"object-merge",
"objects",
"deep-merge",
"object"
],
"author": "Tackx",
"license": "MIT",
"engineStrict": false,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc && npm run lint",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts,.js,.json --fix --ignore-path .eslintignore"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.x",
"ts-node-dev": "^2.x",
"typescript": "^4.x"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/*"
]
}