-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 2.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "mixme",
"description": "A library for recursively merging JavaScript objects",
"version": "1.1.0",
"author": "David Worms <[email protected]> (https://www.adaltas.com)",
"contributors": [
"Paul Farault <[email protected]>"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.8.0",
"@rollup/plugin-babel": "^6.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.0",
"coffeescript": "^2.7.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"mocha": "^10.7.0",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"rollup": "^4.19.1",
"should": "^13.2.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">= 8.0.0"
},
"homepage": "https://github.com/adaltas/node-mixme",
"bugs": {
"url": "https://github.com/adaltas/node-mixme/issues"
},
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"keywords": [
"clone",
"copy",
"deep",
"extend",
"merge",
"objects",
"recursive"
],
"files": [
"dist",
"lib"
],
"license": "MIT",
"lint-staged": {
"*.js": "npm run lint:check",
"*.md": "prettier --list-different"
},
"main": "./dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"mocha": {
"inline-diffs": true,
"loader": "ts-node/esm",
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": true,
"timeout": 40000
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-mixme.git"
},
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run build:rollup && npm run build:ts",
"build:rollup": "rollup -c",
"build:ts": "cp lib/index.d.ts dist/cjs/index.d.cts && cp lib/*.ts dist/esm",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"test": "mocha 'test/**/*.{js,ts}'",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"postrelease": "git push --follow-tags origin master",
"prepare": "husky"
},
"type": "module",
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/esm/index.d.ts"
]
}
},
"dependencies": {}
}