relay-cfg/package.json

35 lines
744 B
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": {
2018-07-19 09:07:29 +00:00
"lint": "eslint lib/ || exit 0",
"test": "mocha --reporter spec test/*-test.js"
},
"dependencies": {
"bsert": "~0.0.3"
2017-10-29 14:08:10 +00:00
},
"devDependencies": {
2018-07-19 09:07:29 +00:00
"eslint": "^5.1.0",
"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"
}
}