-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.12 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.12 KB
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
{
"name": "rockchain-fabric",
"version": "0.0.1",
"description": "omni's rockchain app as a fabric/composer network",
"scripts": {
"build-archive": "composer archive create -t dir -n . -a build/rockchain-fabric.bna",
"install-runtime": "composer runtime install --card PeerAdmin@hlfv1 --businessNetworkName rockchain-fabric",
"network-start": "composer network start --card PeerAdmin@hlfv1 --networkAdmin admin --networkAdminEnrollSecret adminpw --archiveFile build/rockchain-fabric.bna --file build/networkadmin.card",
"network-update": "composer network update -a build/rockchain-fabric.bna -c admin@rockchain-fabric",
"import-admin-card": "composer card import --file build/networkadmin.card",
"test": "mocha --recursive"
},
"author": "Ryan Gahl",
"email": "ryan.gahl@omniresources.com",
"license": "Apache-2.0",
"devDependencies": {
"composer-admin": "latest",
"composer-client": "latest",
"composer-common": "latest",
"composer-connector-embedded": "latest",
"chai": "latest",
"eslint": "latest",
"istanbul": "latest",
"mkdirp": "latest",
"mocha": "latest"
}
}