relay-cfg/package.json

34 lines
722 B
JSON
Raw Normal View History

2017-10-29 14:08:10 +00:00
{
"name": "bcfg",
2018-11-29 11:07:28 +00:00
"version": "0.1.4",
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": {
2018-07-19 09:07:29 +00:00
"lint": "eslint lib/ || exit 0",
2018-11-29 10:47:54 +00:00
"test": "bmocha --reporter spec test/*-test.js"
2018-07-19 09:07:29 +00:00
},
"dependencies": {
2018-11-29 11:07:28 +00:00
"bsert": "~0.0.5"
2017-10-29 14:08:10 +00:00
},
"devDependencies": {
2018-11-29 10:47:54 +00:00
"bmocha": "^0.1.0"
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"
}
}