quartz/wallet/node_modules/keccak256/package.json
2022-03-04 20:05:23 +08:00

71 lines
2.0 KiB
JSON

{
"name": "keccak256",
"version": "1.0.6",
"description": "A wrapper for the keccak library to compute 256 bit keccak hash in JavaScript",
"main": "dist/keccak256.js",
"types": "dist/keccak256.d.ts",
"scripts": {
"test": "tape test/*.js",
"build": "tsc",
"build:browser": "browserify -t [ babelify --presets [ es2015 ] ] dist/keccak256.js > keccak256.js",
"lint": "eslint --fix \"src/**/*\"",
"clean": "rimraf keccak256.js && rimraf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/keccak256"
},
"bugs": {
"url": "https://github.com/miguelmota/keccak256/issues"
},
"homepage": "https://github.com/miguelmota/keccak256",
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/keccak256/blob/master/LICENSE.md"
},
"dependencies": {
"bn.js": "^5.2.0",
"buffer": "^6.0.3",
"keccak": "^3.0.2"
},
"keywords": [
"crypto",
"hash",
"sha3",
"algorithm",
"keccak",
"keccak256"
],
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/keccak": "^3.0.1",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^17.0.0",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^1.1.2",
"rimraf": "^3.0.2",
"standard": "^16.0.4",
"tape": "^4.9.1",
"typescript": "^4.5.3"
}
}