-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 848 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
{
"name": "@fingerartur/ts-merge-objects",
"version": "1.0.1",
"description": "Lib to deep merge two objects",
"author": "Artur Finger",
"license": "ISC",
"keywords": [ "deep", "merge" ],
"repository": "https://github.com/fingerartur/ts-merge-objects",
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -rf dist && webpack --config=./webpack.config.js",
"test": "jest --config=./jest.config.js",
"prepublishOnly": "yarn build",
"pub": "npm publish --access public"
},
"dependencies": {
},
"devDependencies": {
"@types/jest": "^26.0.10",
"jest": "^26.0.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.2",
"webpack": "^5.32.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.2.0"
},
"files": [
"dist"
]
}