cordite-cli
Version:
a command line tool for accessing a Corda node running cordite cordapps or braid
56 lines (55 loc) • 1.46 kB
JSON
{
"name": "cordite-cli",
"version": "0.5.4",
"description": "a command line tool for accessing a Corda node running cordite cordapps or braid",
"main": "cordite.js",
"repository": "https://gitlab.com/cordite/cordite",
"contributors": [
{
"name": "fuzz",
"email": "fp@chorum.io"
},
{
"name": "chris",
"email": "chris.jones@bluebank.io"
}
],
"bin": {
"cordite": "./cordite.js"
},
"dependencies": {
"braid-client": "^3.2.0-20180731130117367",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"esprima-walk": "^0.1.0",
"pattern-match": "^0.3.0",
"recast": "^0.14.7"
},
"devDependencies": {
"pkg": "^4.3.0",
"rimraf": "^2.6.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-osx": "pkg -t latest-macos-x64 cordite.js --out-path target/osx-x64",
"build-linux": "pkg -t latest-linux-x64 cordite.js --out-path target/linux-x64",
"build-windows": "pkg -t latest-win-x64 cordite.js --out-path target/win-x64",
"build": "npm run build-osx && npm run build-linux && npm run build-windows",
"clean": "rimraf target"
},
"keywords": [
"corda",
"cordite",
"braid",
"braid-client"
],
"licenses": [
{
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}