-
Notifications
You must be signed in to change notification settings - Fork 517
/
package.json
113 lines (113 loc) · 4.57 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "fabric-sdk-node",
"version": "2.2.21-snapshot",
"tag": "unstable",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/fabric-sdk-node"
},
"homepage": "https://www.hyperledger.org/projects/fabric",
"author": {
"name": "hyperledger/fabric",
"email": "fabric@lists.hyperledger.org"
},
"scripts": {
"installAndGenerateCerts": "node ./scripts/npm_scripts/generateCerts.js",
"pullFabricImages": "./scripts/utility/fabric_images.sh",
"test": "run-s checkLicense cleanUp dockerClean compile lint docs unitTest:all dockerReady tapeIntegration cucumberScenario",
"testNoHSM": "run-s checkLicense cleanUp dockerClean compile lint docs unitTest:all dockerReady tapeIntegration cucumberScenarioNoHSM",
"checkLicense": "./scripts/npm_scripts/checkLicense.sh",
"cleanUp": "node -e 'require(\"./scripts/npm_scripts/testFunctions.js\").cleanUp()'",
"dockerClean": "./scripts/npm_scripts/dockerClean.sh",
"compile": "tsc --project fabric-network/tsconfig.json",
"lint": "eslint . --ext .ts,.js",
"docs": "node -e 'require(\"./scripts/npm_scripts/testFunctions.js\").cleanUpDocs()' && jsdoc -c docs/jsdoc.json -t ./node_modules/ink-docstrap/template --pedantic --recurse",
"unitTest:all": "export HFC_LOGGING='{\"debug\":\"test/temp/debug.log\"}' && nyc run-s unitTest:common unitTest:ca-client unitTest:network",
"unitTest:common": "mocha --reporter list 'fabric-common/test/**/*.js'",
"unitTest:ca-client": "mocha --reporter list 'fabric-ca-client/test/**/*.js'",
"unitTest:network": "run-s compile \"unitTest -- --project ./fabric-network/tsconfig.json 'fabric-network/test/**/*.{js,ts}'\"",
"unitTest": "ts-mocha --reporter list",
"dockerReady": "npm run dockerClean && (cd test/fixtures/docker-compose && docker compose -f docker-compose-tls-level-db.yaml -p node up -d && sleep 15 && docker ps -a)",
"tapeIntegration": "./scripts/npm_scripts/runTape.sh",
"cucumberScenario": "npm run setupCucumbers && export HFC_LOGGING='{\"debug\":\"test/temp/debugc.log\"}' && npm run dockerClean && nyc --check-coverage --statements 54 --branches 32 --functions 46 --lines 54 npm run test:ts-cucumber",
"cucumberScenarioNoHSM": "npm run setupCucumbers && export HFC_LOGGING='{\"debug\":\"test/temp/debugc.log\"}' && npm run dockerClean && nyc --check-coverage --statements 54 --branches 32 --functions 46 --lines 54 npm run test:ts-cucumberNoHSM",
"setupCucumbers": "node -e 'require(\"./scripts/npm_scripts/testFunctions.js\").createCucumberLogFile()'",
"test:ts-cucumber": "tsc --project test/ts-scenario/tsconfig.json && cucumber-js -f @cucumber/pretty-formatter ./test/ts-scenario/features/*.feature --require './test/ts-scenario/lib/**/*.js'",
"test:ts-cucumberNoHSM": "npm run test:ts-cucumber -- --tags 'not @gateway_hsm'",
"testHeadless": "run-s cleanUp compile lint unitTest:all",
"tapeAndCucumber": "run-s tapeIntegration dockerClean cucumberScenario"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.2",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"@tsconfig/node14": "^14.1.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.63",
"@types/rimraf": "^3.0.0",
"@types/sinon": "^10.0.0",
"@types/tape": "^4.2.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"elliptic": "^6.5.4",
"eslint": "^8.53.0",
"eslint-plugin-tsdoc": "^0.2.17",
"fabric-ca-client": "file:./fabric-ca-client",
"fabric-client": "^1.4.18",
"fabric-common": "file:./fabric-common",
"fabric-network": "file:./fabric-network",
"fabric-protos": "file:./fabric-protos",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.6",
"jsrsasign": "^11.0.0",
"long": "^5.2.3",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rewire": "^6.0.0",
"rimraf": "^3.0.0",
"sinon": "^13.0.2",
"sinon-chai": "^3.6.0",
"strip-ansi": "^6.0.1",
"tape": "^5.2.2",
"tape-promise": "^4.0.0",
"ts-mocha": "^10.0.0",
"ts-mock-imports": "^1.3.4",
"typescript": "~4.9.5",
"winston": "^2.4.5"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hyperledger/fabric/blob/main/LICENSE"
}
],
"nyc": {
"exclude": [
"test/**",
"fabric-*/index.js",
"fabric-*/test/**",
"fabric-protos/grpc.js",
"fabric-protos/bundle.js"
],
"extension": [
".ts"
],
"reporter": [
"text",
"html"
],
"cache": true,
"check-coverage": true,
"statements": 82,
"branches": 74,
"functions": 77,
"lines": 83
}
}