object.size
Version:
returns the size of a given object
46 lines (45 loc) • 1.06 kB
JSON
{
"name": "object.size",
"version": "1.0.0",
"description": "returns the size of a given object",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"coverage": "open coverage/lcov-report/index.html",
"coverage:check": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && istanbul cover -x test.js tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaquimserafim/object.size.git"
},
"keywords": [
"utils",
"object",
"length",
"size"
],
"author": "@JoaquimSerafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/object.size/issues"
},
"homepage": "https://github.com/joaquimserafim/object.size#readme",
"devDependencies": {
"istanbul": "0.4.5",
"pre-commit": "^1.2.2",
"standard": "^8.6.0",
"tape": "^4.6.3"
},
"engines": {
"node": ">=6.1"
},
"pre-commit": [
"test",
"coverage:check"
]
}