|
1 | 1 | {
|
2 | 2 | "engines": {
|
3 |
| - "node": "8.x", |
4 |
| - "npm": "5.x", |
5 | 3 | "composer": ""
|
6 | 4 | },
|
7 | 5 | "name": "zerotoblockchain-network",
|
8 |
| - "version": "0.16.2", |
| 6 | + "version": "0.1.6", |
9 | 7 | "description": "Zero to Blockchain tutorial network",
|
| 8 | + "networkImage": "https://hyperledger.github.io/composer-sample-networks/packages/basic-sample-network/networkimage.svg", |
| 9 | + "networkImageanimated": "https://hyperledger.github.io/composer-sample-networks/packages/basic-sample-network/networkimageanimated.svg", |
10 | 10 | "scripts": {
|
11 |
| - "start": "./init.sh" |
| 11 | + "prepublish": "mkdirp ./network/dist && composer archive create --sourceType dir --sourceName . -a ./network/dist/zerotoblockchain-network.bna", |
| 12 | + "pretest": "npm run lint", |
| 13 | + "lint": "eslint ./network", |
| 14 | + "postlint": "npm run licchk", |
| 15 | + "licchk": "license-check", |
| 16 | + "postlicchk": "npm run doc", |
| 17 | + "doc": "jsdoc --readme ./README.md --pedantic --recurse -c jsdoc.json -d network/out", |
| 18 | + "test-inner": "mocha -t 0 --recursive && cucumber-js", |
| 19 | + "test-cover": "nyc npm run test-inner", |
| 20 | + "test": "mocha network/test --recursive -t 4000", |
| 21 | + "start": "node index" |
12 | 22 | },
|
13 | 23 | "repository": {
|
14 | 24 | "type": "git",
|
|
23 | 33 | ],
|
24 | 34 | "author": "Bob Dill, IBM Distinguished Engineer",
|
25 | 35 | "license": "Apache-2.0",
|
26 |
| - "dependencies": { |
27 |
| - "body-parser": "^1.18.1", |
28 |
| - "cfenv": "^1.0.4", |
| 36 | + "devDependencies": { |
| 37 | + "extend": "", |
| 38 | + "browserfs": "^1.2.0", |
| 39 | + "chai": "^3.5.0", |
| 40 | + "chai-as-promised": "^6.0.0", |
29 | 41 | "composer-admin": "^0.16.2",
|
30 | 42 | "composer-client": "^0.16.2",
|
31 | 43 | "composer-common": "^0.16.2",
|
32 | 44 | "composer-connector-embedded": "^0.16.2",
|
33 | 45 | "composer-cucumber-steps": "^0.16.2",
|
34 | 46 | "composer-runtime": "^0.16.2",
|
35 | 47 | "composer-runtime-hlfv1": "^0.16.2",
|
| 48 | + "cucumber": "^2.2.0", |
| 49 | + "eslint": "^3.6.1", |
| 50 | + "istanbul": "^0.4.5", |
| 51 | + "jsdoc": "^3.5", |
| 52 | + "license-check": "^1.1.5", |
| 53 | + "mkdirp": "^0.5.1", |
| 54 | + "mocha": "^3.2.0", |
| 55 | + "moment": "^2.17.1", |
| 56 | + "nyc": "^11.0.2" |
| 57 | + }, |
| 58 | + "license-check-config": { |
| 59 | + "src": [ |
| 60 | + "**/*.js", |
| 61 | + "!./coverage/**/*", |
| 62 | + "!./node_modules/**/*", |
| 63 | + "!./network/out/**/*", |
| 64 | + "!./HTML/js-utils/**/*", |
| 65 | + "!./network/scripts/**/*" |
| 66 | + ], |
| 67 | + "path": "header.txt", |
| 68 | + "blocking": true, |
| 69 | + "logInfo": false, |
| 70 | + "logError": true |
| 71 | + }, |
| 72 | + "nyc": { |
| 73 | + "exclude": [ |
| 74 | + "coverage/**", |
| 75 | + "network/features/**", |
| 76 | + "network/out/**", |
| 77 | + "network/test/**" |
| 78 | + ], |
| 79 | + "reporter": [ |
| 80 | + "text-summary", |
| 81 | + "html" |
| 82 | + ], |
| 83 | + "all": true, |
| 84 | + "check-coverage": true, |
| 85 | + "statements": 100, |
| 86 | + "branches": 100, |
| 87 | + "functions": 100, |
| 88 | + "lines": 100 |
| 89 | + }, |
| 90 | + "dependencies": { |
| 91 | + "body-parser": "^1.18.1", |
| 92 | + "cfenv": "^1.0.4", |
36 | 93 | "connect-busboy": "0.0.2",
|
37 | 94 | "cookie-parser": "^1.4.3",
|
38 | 95 | "date-format": "",
|
39 | 96 | "ejs": "",
|
40 | 97 | "express": "^4.15.4",
|
41 | 98 | "express-session": "^1.15.5",
|
42 |
| - "fabric-client": "^1.0.2", |
| 99 | + "fabric-client": "1.2.2", |
43 | 100 | "fs": "0.0.1-security",
|
44 | 101 | "http": "0.0.0",
|
45 | 102 | "https": "^1.0.0",
|
|
49 | 106 | "sleep": "^5.1.1",
|
50 | 107 | "uuid": "^3.1.0",
|
51 | 108 | "vcap_services": "^0.3.4",
|
52 |
| - "websocket": "^1.0.25" |
| 109 | + "websocket": "^1.0.24" |
53 | 110 | }
|
54 | 111 | }
|
0 commit comments