-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 793 Bytes
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
{
"name": "nested-object-access",
"version": "0.2.5",
"description": "TypeScript-powered util to work with nested objects using dot-separated keys",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest"
},
"repository": "https://github.com/Jirinrin/nested-object-access",
"keywords": [
"deep",
"nested",
"object",
"recursion",
"helper types"
],
"author": "Jirinrin",
"license": "ISC",
"files": [
"src/index.js",
"src/index.d.ts",
"src/types.ts"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"jest": {
"testPathIgnorePatterns": [
"\\.d\\.ts$"
],
"preset": "ts-jest"
}
}