UNPKG

1.22 kBJSONView Raw
1{
2 "name": "bcfg",
3 "version": "0.1.0",
4 "description": "Config parser for bcoin",
5 "keywords": [
6 "conf",
7 "config"
8 ],
9 "license": "MIT",
10 "repository": "git://github.com/bcoin-org/bcfg.git",
11 "homepage": "https://github.com/bcoin-org/bcfg",
12 "bugs": {
13 "url": "https://github.com/bcoin-org/bcfg/issues"
14 },
15 "author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
16 "main": "./lib/bcfg.js",
17 "scripts": {
18 "browserify": "browserify -s bcfg lib/bcfg.js | uglifyjs -c > bcfg.js",
19 "clean": "rm -f bcfg.js",
20 "lint": "eslint lib/ test/ || exit 0",
21 "test": "mocha --reporter spec test/*-test.js",
22 "webpack": "webpack --mode production --config webpack.config.js"
23 },
24 "devDependencies": {
25 "babelify": "^8.0.0",
26 "babel-core": "^6.26.3",
27 "babel-loader": "^7.1.4",
28 "babel-preset-env": "^1.7.0",
29 "browserify": "^16.2.2",
30 "eslint": "^4.19.1",
31 "mocha": "^5.2.0",
32 "uglifyjs-webpack-plugin": "^1.2.5",
33 "uglify-es": "^3.3.9",
34 "webpack": "^4.11.1",
35 "webpack-cli": "^3.0.3"
36 },
37 "engines": {
38 "node": ">=8.0.0"
39 },
40 "browser": {
41 "./lib/fs": "./lib/fs-browser.js"
42 },
43 "browserify": {
44 "transform": [
45 "babelify"
46 ]
47 }
48}