{ "name": "nested-property", "description": "Read, write or test a data structure's nested property via a string like 'my.nested.property'. It works through arrays and objects.'", "version": "4.0.0", "homepage": "https://github.com/cosmosio/nested-property", "license": "MIT", "files": [ "LICENSE", "CHANGELOG", "dist/nested-property.js", "index.d.ts" ], "author": "Olivier Scherrer ", "contributors": [ { "name": "Igor Barbosa", "url": "https://github.com/igor-barbosa" } ], "keywords": [ "nested", "property", "object", "array", "read", "write", "get", "set" ], "repository": { "type": "git", "url": "git@github.com:cosmosio/nested-property.git" }, "bugs": { "url": "https://github.com/cosmosio/nested-property/issues" }, "scripts": { "test": "mocha test/", "debug-test": "mocha debug test/", "test-build": "ENTRYPOINT=../dist/nested-property.js mocha test/", "lint": "eslint index.js test/", "fix-lint": "eslint index.js test/ --fix", "build": "babel index.js -o dist/nested-property.js" }, "main": "./dist/nested-property.js", "devDependencies": { "@babel/cli": "^7.11.6", "@babel/core": "^7.11.6", "@babel/preset-env": "^7.11.5", "chai": "~1.9.1", "eslint": "^6.8.0", "mocha": "^8.1.3", "sinon": "~1.12.2" } }