-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "deep-object-assign-with-reduce",
"version": "3.0.2",
"description": "Minimalist deep merging of Objects with the same function signature as Object.assign()",
"main": "dist/deep-object-assign.umd.js",
"module": "dist/deep-object-assign.esm.js",
"scripts": {
"build": "rm -rf dist && rollup --config",
"prepare": "npm build",
"test": "jest",
"patch": "npm version patch && npm publish && git push --tags && git push",
"minor": "npm version minor && npm publish && git push --tags && git push",
"major": "npm version major && npm publish && git push --tags && git push",
"npm-publish": "npm publish && git push && git push --tags",
"bump": "npm outdated & npm update && npm audit fix && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidcalhoun/deep-object-assign-with-reduce.git"
},
"browser": "dist/deep-object-assign.umd.js",
"type": "module",
"engines": {
"node": ">=13"
},
"keywords": [
"object",
"assign",
"object.assign",
"merge",
"combine",
"objects",
"defaults",
"deep",
"reduce",
"options",
"defaults"
],
"author": "David Calhoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidcalhoun/deep-object-assign-with-reduce/issues"
},
"homepage": "https://github.com/davidcalhoun/deep-object-assign-with-reduce#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0"
}
}