-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 1.2 KB
/
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
{
"name": "identities",
"version": "0.1.0",
"description": "Bootstrap project for Chaincodes identities",
"files": [
"dist/*"
],
"scripts": {
"start": "npm run env:restart",
"install": "npm-run-all -s lerna:install",
"env:restart": "hurl new -u 3",
"env:clean": "hurl clean",
"cc:start": "f() { npm run cc:package; npm run cc:install; }; f",
"cc:upgrade": "f() { npm run cc:package; hurl upgrade identities node $1 -P ./chaincode-identities; }; f",
"===================INTERNALS===================": "===================NO NEED TO CALL THEM DIRECTLY===================",
"lerna:install": "lerna bootstrap",
"lerna:build": "lerna run build",
"cc:package": "f() { npm run lerna:build; chaincode-manager --config ./org1.identities.config.json --output ./chaincode-identities package; }; f",
"cc:install": "f() { hurl install identities node -P ./chaincode-identities; }; f"
},
"devDependencies": {
"@worldsibu/convector-adapter-mock": "~1.3.3",
"@worldsibu/convector-tool-chaincode-manager": "~1.3.3",
"@worldsibu/hurley": "~1.0.0",
"fabric-ca-client": "~1.4.0",
"fabric-client": "~1.4.0",
"lerna": "^3.4.3",
"npm-run-all": "^4.1.5"
}
}