-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.23 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.23 KB
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
{
"name": "@jsopen/objects",
"description": "Helper utilities for working with JavaScript objects and arrays",
"version": "2.1.1",
"author": "Panates",
"license": "MIT",
"private": true,
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@panates/eslint-config": "^2.0.7",
"@panates/eslint-config-ts": "^2.0.7",
"@panates/tsconfig": "^2.0.7",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.11",
"@swc/helpers": "^0.5.18",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
"auto-changelog": "^2.5.0",
"c8": "^10.1.3",
"expect": "^30.2.0",
"globals": "^17.3.0",
"madge": "^8.0.0",
"mocha": "^11.7.5",
"npm-check-updates": "^19.3.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"ts-cleanup": "^1.3.0",
"ts-gems": "^3.11.3",
"typescript": "^5.9.3"
},
"scripts": {
"compile": "tsc --noEmit",
"prebuild": "npm run clean:build && npm run lint",
"build": "tsc -b tsconfig-build.json",
"postbuild": "node ./support/postbuild.cjs && rimraf build/*.tsbuildinfo",
"clean": "npm run clean:src && npm run clean:dist",
"clean:build": "rimraf build *.tsbuildinfo",
"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"check": "madge --circular src/**",
"test": "mocha",
"precitest": "rimraf coverage",
"citest": "c8 mocha",
"qc": "npm run lint && npm run check",
"version": "auto-changelog -p --starting-version v4.0.0 && git add CHANGELOG.md"
},
"type": "module",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Eray Hanoglu <e.hanoglu@panates.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/panates/jsopen-objects.git"
},
"engines": {
"node": ">= 16.0"
},
"keywords": [
"object",
"util",
"utils",
"merge",
"clone",
"deep",
"omit",
"is-plain",
"object-utils"
],
"publishConfig": {
"access": "public"
}
}