{ "name": "bcfg", "version": "0.0.2", "description": "Config parser for bcoin", "keywords": [ "conf", "config" ], "license": "MIT", "repository": "git://github.com/bcoin-org/bcfg.git", "homepage": "https://github.com/bcoin-org/bcfg", "bugs": { "url": "https://github.com/bcoin-org/bcfg/issues" }, "author": "Christopher Jeffrey ", "main": "./lib/bcfg.js", "scripts": { "browserify": "browserify -s bcfg lib/bcfg.js | uglifyjs -c > bcfg.js", "clean": "rm -f bcfg.js", "lint": "eslint lib/ test/ || exit 0", "test": "mocha --reporter spec test/*-test.js", "webpack": "webpack --config webpack.config.js" }, "devDependencies": { "babelify": "^8.0.0", "babel-core": "^6.26.0", "babel-loader": "^7.1.4", "babel-preset-env": "^1.6.1", "browserify": "^16.1.1", "eslint": "^4.18.2", "mocha": "^5.0.4", "uglifyjs-webpack-plugin": "^1.2.3", "uglify-es": "^3.3.9", "webpack": "^4.1.1" }, "engines": { "node": ">=7.6.0" }, "browser": { "./lib/fs": "./lib/fs-browser.js" }, "browserify": { "transform": [ "babelify" ] } }