relay-cfg/package.json

34 lines
720 B
JSON
Raw Normal View History

2017-10-29 14:08:10 +00:00
{
"name": "bcfg",
2018-07-19 09:14:48 +00:00
"version": "0.1.2",
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",
"test": "mocha --reporter spec test/*-test.js"
},
"dependencies": {
2018-09-29 00:15:41 +00:00
"bsert": "~0.0.4"
2017-10-29 14:08:10 +00:00
},
"devDependencies": {
2018-07-19 09:07:29 +00:00
"mocha": "^5.2.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"
}
}