-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 KB
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
{
"name": "@dashevo/dapi-grpc",
"version": "3.1.0-dev.1",
"description": "DAPI GRPC definition file and generated clients",
"browser": "browser.js",
"main": "node.js",
"scripts": {
"build": "yarn exec scripts/build.sh",
"lint": "eslint .",
"prepublishOnly": "yarn run build",
"test": "yarn run test:unit",
"test:unit": "mocha './test/unit/**/*.spec.js'"
},
"contributors": [
{
"name": "Ivan Shumkov",
"email": "shumkov@dash.org",
"url": "https://github.com/shumkov"
},
{
"name": "Anton Suprunchuk",
"email": "anton.suprunchuk@dash.org",
"url": "https://github.com/antouhou"
},
{
"name": "Samuel Westrich",
"email": "sam@dash.org"
},
{
"name": "Igor Markin",
"email": "igor.markin@dash.org"
},
{
"name": "Łukasz Klimek",
"email": "lukasz.klimek@dash.org"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/dapi-grpc.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/dapi-grpc/issues"
},
"homepage": "https://github.com/dashevo/dapi-grpc#readme",
"dependencies": {
"@dashevo/grpc-common": "workspace:*",
"@dashevo/protobufjs": "6.10.5",
"@grpc/grpc-js": "^1.14.3",
"@improbable-eng/grpc-web": "^0.15.0",
"google-protobuf": "^3.12.2",
"long": "^5.2.0"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^9.18.0",
"mocha": "^11.1.0",
"mocha-sinon": "^2.1.2",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0"
}
}