relay-cfg/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2017-10-29 14:08:10 +00:00
{
"name": "bcfg",
2018-06-08 12:28:20 +00:00
"version": "0.1.0",
2017-10-29 14:08:10 +00:00
"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",
2018-06-08 12:28:20 +00:00
"webpack": "webpack --mode production --config webpack.config.js"
2017-10-29 14:08:10 +00:00
},
"devDependencies": {
2017-12-29 20:54:12 +00:00
"babelify": "^8.0.0",
2018-06-08 12:28:20 +00:00
"babel-core": "^6.26.3",
2018-03-12 22:51:32 +00:00
"babel-loader": "^7.1.4",
2018-06-08 12:28:20 +00:00
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.2",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"uglifyjs-webpack-plugin": "^1.2.5",
2018-03-12 22:51:32 +00:00
"uglify-es": "^3.3.9",
2018-06-08 12:28:20 +00:00
"webpack": "^4.11.1",
"webpack-cli": "^3.0.3"
2017-10-29 14:08:10 +00:00
},
"engines": {
2018-06-08 12:28:20 +00:00
"node": ">=8.0.0"
2017-10-29 14:08:10 +00:00
},
"browser": {
"./lib/fs": "./lib/fs-browser.js"
},
"browserify": {
"transform": [
"babelify"
]
}
}