-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.37 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
{
"name": "@digitalasset/daml-ledger",
"version": "0.11.1",
"description": "DAML Ledger API Node.js bindings",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib",
"package.json"
],
"scripts": {
"ci-pipeline": "npm ci && ./check-copy.sh && rm -rf proto src/generated && npm run pretest && npm run test-with-fixed-seed",
"release-docs": "rm -rf docs && typedoc --tsconfig tsconfig-docs.json --out ./docs/$(git describe --tags) src",
"prepack": "./grpc-codegen.sh && tsc --build tsconfig-dist.json && cp -r src/generated lib",
"pretest": " ./sandbox-start.sh && npm run prepack && tsc --build tsconfig-test.json",
"test": "DAML_SANDBOX_PORT=$(cat sandbox.port) TS_NODE_COMPILER_OPTIONS=$(node compiler-options) mocha -r ts-node/register --recursive './test/**/*.spec.ts'",
"test-with-fixed-seed": "DAML_SANDBOX_PORT=$(cat sandbox.port) TS_NODE_COMPILER_OPTIONS=$(node compiler-options) mocha -r ts-node/register --jsverifyRngState 86f24ba518063e9c7d --recursive './test/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-asset/daml-js.git"
},
"keywords": [
"smart",
"contracts",
"distributed",
"ledger",
"technologies",
"dlt",
"blockchain"
],
"author": {
"name": "Digital Asset (Switzerland) GmbH and/or its affiliates",
"email": "[email protected]",
"url": "https://www.digitalasset.com"
},
"contributors": [
"Stefano Baghino <[email protected]>",
"Mario Pastorelli <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digital-asset/daml-js/issues"
},
"homepage": "https://github.com/digital-asset/daml-js#readme",
"dependencies": {
"@grpc/grpc-js": "^1.3.0",
"google-protobuf": "^3.12.4"
},
"engines": {
"node": ">=10.0.0 <15.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/google-protobuf": "^3.7.2",
"@types/mocha": "^8.0.1",
"@types/node": "~12.0.12",
"@types/sinon": "^9.0.4",
"@types/uuid": "^8.0.1",
"chai": "^4.2.0",
"grpc-tools": "^1.9.1",
"grpc_tools_node_protoc_ts": "^5.2.2",
"jsverify": "^0.8.4",
"mocha": "^8.1.1",
"protobufjs": "^6.10.1",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7",
"uuid": "^8.3.0"
}
}