-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "deep-combine",
"version": "3.0.0",
"description": "A simple utility library for deep combining objects. It allows to combine objects and their nested properties. Providing better readability, making your code more concise and ensuring type-safety as well.",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:esm": "tsc",
"test": "jest",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build && git add ./dist"
}
},
"keywords": [
"deep",
"combine",
"merge",
"object",
"utility"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"author": "Lucas T. Cerveira",
"license": "ISC",
"repository": {
"url": "https://github.com/LucasTempass/deep-combine.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/LucasTempass/deep-combine/issues"
},
"readme": "README.md",
"devDependencies": {
"@types/jest": "^29.5.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.5.2"
}
}