relay-cfg/package.json

49 lines
1.2 KiB
JSON

{
"name": "bcfg",
"version": "0.0.0",
"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 <chjjeffrey@gmail.com>",
"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": "^7.3.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"browserify": "^14.5.0",
"eslint": "^4.9.0",
"level-js": "^2.2.4",
"mocha": "^4.0.1",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"uglify-es": "^3.1.3",
"webpack": "^3.8.1"
},
"engines": {
"node": ">=7.6.0"
},
"browser": {
"./lib/fs": "./lib/fs-browser.js"
},
"browserify": {
"transform": [
"babelify"
]
}
}