51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "bcfg",
|
|
"version": "0.1.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 --mode production --config webpack.config.js"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-polyfill": "^6.26.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babelify": "^8.0.0",
|
|
"browserify": "^16.2.2",
|
|
"eslint": "^4.19.1",
|
|
"mocha": "^5.2.0",
|
|
"uglify-es": "^3.3.9",
|
|
"uglifyjs-webpack-plugin": "^1.2.5",
|
|
"webpack": "^4.11.1",
|
|
"webpack-cli": "^3.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"browser": {
|
|
"./lib/fs": "./lib/fs-browser.js"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"babelify"
|
|
]
|
|
}
|
|
}
|