-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (74 loc) · 2.02 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
{
"name": "kalp-fabric-js-sdk",
"version": "2.5.5",
"tag": "latest",
"description": "A node.js implementation of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/fabric-chaincode-node"
},
"keywords": [
"fabric-shim",
"Hyperledger Fabric",
"Fabric Shim"
],
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"types": "./types/index.d.ts",
"nyc": {
"exclude": [
"coverage/**",
"test/**",
"gulpfile.js"
],
"reporter": [
"text-summary",
"html",
"cobertura"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"dependencies": {
"class-transformer": "^0.4.0",
"fast-safe-stringify": "^2.1.1",
"get-params": "^0.1.2",
"reflect-metadata": "^0.1.13",
"winston": "^3.7.2",
"kalp-shim-sdk-new": "[email protected]:kamalp2e/kalp-shim-sdk-new.git"
},
"devDependencies": {
"fabric-shim-api": "2.5.5",
"ajv": "^6.12.2",
"ajv-cli": "^3.2.1",
"ajv-formats": "2.1.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"eslint": "^6.6.0",
"gulp": "^4.0.2",
"gulp-debug": "~4.0.0",
"gulp-eslint": "~6.0.0",
"mocha": "9.1.3",
"nyc": "15.1.0",
"rewire": "6.0.0",
"sinon": "13.0.1",
"typescript": "4.4.4"
},
"scripts": {
"buildt": "tsc --project test/typescript",
"test": "nyc mocha --recursive 'test/unit/**/*.js'",
"build": "npm run lint && npm run test:unit && npm run test:schema",
"lint": "eslint ./lib ./types ./test/typescript/*.ts --ext .js --ext .ts",
"test:unit": "npm run test",
"test:schema": "ajv compile -s ./schema/contract-schema.json && ajv validate -s ./schema/contract-schema.json -d ./schema/example-full.json",
"post_build":"fabric-chaincode-node start"
}
}