happyucjs-util
Version:
a collection of utility functions for HappyUC
74 lines (73 loc) • 2.13 kB
JSON
{
"name": "happyucjs-util",
"version": "1.0.6",
"description": "a collection of utility functions for HappyUC",
"main": "dist/index.js",
"scripts": {
"coverage": "npm run build:dist && istanbul cover _mocha",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"prepublishOnly2": "npm run lint && npm run build:dist && npm run test",
"prepublishOnly": "npm run lint",
"test": "npm run test:node && npm run test:browser",
"test:browser": "npm run build:dist && karma start karma.conf.js",
"test:node": "npm run build:dist && istanbul test mocha -- --reporter spec",
"build:dist": "babel index.js --source-root ./ -d ./dist",
"build:docs": "documentation build ./index.js --github --sort-order='alpha' -f md > ./docs/index.md"
},
"repository": {
"type": "git",
"url": "https://github.com/happyucjs/happyucjs-util.git"
},
"keywords": [
"happyuc",
"utilties"
],
"author": "happyuc <npm@ounun.org>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/happyucjs/happyucjs-util/issues"
},
"homepage": "https://github.com/happyucjs/happyucjs-util",
"dependencies": {
"is-hex-prefixed": "1.0.0",
"strip-hex-prefix": "1.0.0",
"bn.js": "^4.11.6",
"create-hash": "^1.1.2",
"keccak": "^1.0.2",
"rlp": "^2.0.0",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^14.0.0",
"contributor": "^0.1.25",
"coveralls": "^3.0.0",
"documentation": "^5.2.0",
"istanbul": "^0.4.1",
"karma": "^2.0.0",
"chai": "3.5.0",
"watchify": "^3.7.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "2.2.6",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^4.0.0",
"standard": "*"
},
"standard": {
"globals": [
"describe",
"it"
],
"ignore": [
"dist/",
".idea/"
]
}
}