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{
"name": "flatten-object",
"version": "1.0.0",
"description": "Flattens nested objects with underscore notation",
"main": "dist/flatten.js",
"types": "dist/flatten.d.ts",
"scripts": {
"test": "jest",
"test:better": "jest better-flatten",
"test:watch:better": "jest better-flatten --watch"
},
"keywords": [
"flatten",
"object"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/flat": "^5.0.5",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.45.0",
"flat": "^5.0.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}