UNPKG

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