object-tie
Version:
create a link between a JSON object and a file that updates the file anytime a change is made
51 lines (50 loc) • 1.28 kB
JSON
{
"name": "object-tie",
"description": "create a link between a JSON object and a file that updates the file anytime a change is made",
"version": "0.0.5",
"author": {
"name": "Andrew Pratt <chemdrew1@gmail.com> (http://chemdrew.com)"
},
"homepage": "https://github.com/chemdrew/object-tie",
"bugs": {
"email": "chemdrew1@gmail.com"
},
"keywords": [
"JSON",
"file",
"dbm",
"link",
"tie",
"save",
"persistance",
"javascript",
"object"
],
"repository": {
"type": "git",
"url": "https://github.com/chemdrew/object-tie.git"
},
"license": "MIT",
"devDependencies": {
"mocha": "2.2.5",
"chai": "3.0.0",
"sinon": "1.14.1",
"coveralls": "2.11.2",
"mocha-lcov-reporter": "0.0.2"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec spec/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"local-test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec spec/"
},
"main": "./index.js",
"_npmUser": {
"name": "chemdrew",
"email": "chemdrew1@gmail.com"
},
"maintainers": [
{
"name": "Andrew Pratt",
"email": "chemdrew1@gmail.com"
}
]
}