50 lines
1001 B
JSON
50 lines
1001 B
JSON
{
|
|
"name": "flat",
|
|
"version": "6.0.1",
|
|
"type": "module",
|
|
"bin": {
|
|
"flat": "cli.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"cli.js",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test && standard cli.js index.js test/test.js"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"description": "Take a nested Javascript object and flatten it, or unflatten an object with delimited keys",
|
|
"devDependencies": {
|
|
"standard": "^17.1.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/hughsk/flat.git"
|
|
},
|
|
"keywords": [
|
|
"flat",
|
|
"json",
|
|
"flatten",
|
|
"unflatten",
|
|
"split",
|
|
"object",
|
|
"nested"
|
|
],
|
|
"author": "Hugh Kennedy <hughskennedy@gmail.com> (https://hughsk.io)",
|
|
"bugs": {
|
|
"url": "https://github.com/hughsk/flat/issues"
|
|
},
|
|
"homepage": "https://github.com/hughsk/flat"
|
|
}
|