forked from hyperledger-archives/sawtooth-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 988 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "sawtooth-sdk",
"version": "1.0.4",
"description": "An SDK for interacting with the Hyperledger Sawtooth distributed ledger.",
"keywords": [
"hyperledger",
"blockchain",
"signing",
"crypto",
"protobuf"
],
"homepage": "https://www.hyperledger.org/projects/sawtooth",
"repository": "https://github.com/hyperledger/sawtooth-sdk-javascript.git",
"main": "index.js",
"scripts": {
"test": "standard && node_modules/mocha/bin/mocha --recursive spec",
"compile_protobuf": "node compile_protobuf.js > protobuf/protobuf_bundle.json",
"prepublish": "npm run compile_protobuf && npm test"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"protobufjs": "^6.7.3",
"secp256k1": "^3.2.5",
"uuid": "^3.0.1",
"zeromq": "^4.2.1"
},
"devDependencies": {
"mocha": "^3.2.0",
"standard": "^8.6.0",
"underscore": "^1.8.3"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}