-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "@dashevo/grpc-common",
"version": "1.6.2",
"description": "Common GRPC library",
"main": "index.js",
"scripts": {
"build": "",
"lint": "eslint .",
"test": "yarn run test:coverage",
"test:coverage": "nyc --check-coverage --stmts=95 --branch=95 --funcs=95 --lines=95 yarn run mocha 'test/unit/**/*.spec.js' 'test/integration/**/*.spec.js'",
"test:unit": "mocha './test/unit/**/*.spec.js'",
"test:integration": "mocha './test/integration/**/*.spec.js'"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"mocha-sinon": "^2.1.2",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"@dashevo/protobufjs": "6.10.5",
"@grpc/grpc-js": "1.4.4",
"@grpc/proto-loader": "^0.5.2",
"cbor": "^8.0.0",
"lodash": "^4.17.21",
"long": "^5.2.0",
"semver": "^7.5.3"
}
}