UNPKG

@conflux-dev/conflux-address-js

Version:

The encoder and decoder for Conflux Network address

41 lines (40 loc) 1 kB
{ "name": "@conflux-dev/conflux-address-js", "version": "2.0.1", "description": "The encoder and decoder for Conflux Network address", "main": "lib/index.js", "typings": "typings/index.d.ts", "repository": "https://github.com/conflux-fans/conflux-address-js.git", "author": "ypliu <resodo.liu@gmail.com>", "license": "MIT", "dependencies": { "jsbi": "^3.1.4" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/preset-env": "^7.12.11", "jest": "^29.7.0", "standard": "^16.0.3" }, "scripts": { "test": "standard src && jest", "build:babel": "babel src -d lib", "build:umd": "browserify src/browser.js -o cfxaddr.js -s cfxAddr", "build:standard:fix": "standard src --fix", "build:all": "yarn run build:babel && yarn run test" }, "babel": { "presets": [ [ "@babel/preset-env" ] ] }, "files": [ "lib", "src", "typings" ], "browser": "lib/browser.js" }