github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/sawtooth-core-master/sdk/javascript/package.json (about) 1 { 2 "name": "sawtooth-sdk", 3 "version": "0.0.0", 4 "description": "An SDK for interacting with the Hyperledger Sawtooth distributed ledger.", 5 "keywords": [ 6 "hyperledger", 7 "blockchain", 8 "signing", 9 "crypto", 10 "protobuf" 11 ], 12 "homepage": "https://www.hyperledger.org/projects/sawtooth", 13 "repository": "https://github.com/hyperledger/sawtooth-core.git", 14 "main": "index.js", 15 "scripts": { 16 "test": "standard && node_modules/mocha/bin/mocha --recursive spec", 17 "compile_protobuf": "node compile_protobuf.js > protobuf/protobuf_bundle.json", 18 "prepublish": "npm run compile_protobuf && npm test" 19 }, 20 "author": "", 21 "license": "Apache-2.0", 22 "dependencies": { 23 "protobufjs": "^6.7.3", 24 "secp256k1": "^3.2.5", 25 "uuid": "^3.0.1", 26 "zeromq": "^4.2.1" 27 }, 28 "devDependencies": { 29 "mocha": "^3.2.0", 30 "standard": "^8.6.0", 31 "underscore": "^1.8.3" 32 }, 33 "standard": { 34 "globals": [ 35 "describe", 36 "it" 37 ] 38 } 39 }