-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.72 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
{
"name": "@jsopen/objects",
"description": "Helper utilities for working with JavaScript objects and arrays",
"version": "1.5.0",
"author": "Panates",
"license": "MIT",
"private": true,
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@panates/eslint-config": "^1.0.21",
"@panates/eslint-config-ts": "^1.0.21",
"@panates/tsconfig": "^1.0.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"auto-changelog": "^2.5.0",
"jest": "^29.7.0",
"madge": "^8.0.0",
"prettier": "^3.4.0",
"ts-cleanup": "^1.3.0",
"ts-gems": "^3.9.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"compile": "tsc --noEmit",
"clean": "npm run clean:src && npm run clean:dist",
"clean:dist": "rimraf build coverage",
"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"prebuild": "npm run clean:dist && npm run lint",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig-build-cjs.json && cp support/package.cjs.json ./build/cjs/package.json",
"build:esm": "tsc -b tsconfig-build-esm.json && cp support/package.esm.json ./build/esm/package.json",
"postbuild": "npm run postbuild:copyfiles && node ./support/postbuild.cjs",
"postbuild:copyfiles": "cp LICENSE README.md CHANGELOG.md ./build",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"test": "jest",
"check": "madge --circular src/**",
"precover": "rimraf coverage",
"cover": "jest --runInBand --detectOpenHandles --coverage",
"precitest": "rimraf coverage",
"citest": "jest --coverage --coverageReporters=lcov",
"version": "auto-changelog -p --starting-version v4.0.0 && git add CHANGELOG.md"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./types/index.d.cts",
"default": "./cjs/index.js"
},
"default": "./esm/index.js"
},
"./package.json": "./package.json"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"contributors": [
"Eray Hanoglu <e.hanoglu@panates.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/panates/jsopen-objects.git"
},
"engines": {
"node": ">= 16.0"
},
"files": [
"cjs/",
"esm/",
"types/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"object",
"util",
"utils",
"merge",
"clone",
"deep",
"omit",
"is-plain",
"object-utils"
]
}