-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "ts-object-utilities",
"version": "1.1.1",
"description": "Powerful and versatile library for working with objects in TypeScript that provides a wide range of utility functions for deep cloning, property manipulation, filtering, mapping and more",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"repository": "https://github.com/ryarturogi/ts-object-utils",
"publishConfig": {
"@ryarturogi:registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "exit 0",
"jest": "jest",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"keywords": [
"TypeScript",
"objects",
"utilities",
"functions",
"deep",
"cloning",
"property",
"manipulation",
"filtering",
"mapping",
"functional",
"programming",
"immutability",
"developer",
"tool."
],
"author": "Ryarturogi",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}