forked from digital-asset-archive/ex-tutorial-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "ex-tutorial-nodejs",
"version": "0.9.1",
"description": "An interactive tutorial to get started with the Node.js bindings for DAML",
"main": "index.js",
"dependencies": {
"@digitalasset/daml-ledger": "0.10.0",
"uuid": "3.3.2"
},
"scripts": {
"start": "node ./index.js",
"fetch-template-ids": "rm -f ./template-ids.json && node ./util/fetch-template-ids.js -o ./template-ids.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-asset/ex-tutorial-nodejs.git"
},
"keywords": [
"smart",
"contracts",
"distributed",
"ledger",
"technologies",
"dlt",
"blockchain"
],
"author": {
"name": "Digital Asset (Switzerland) GmbH and/or its affiliates",
"email": "support@digitalasset.com",
"url": "https://www.digitalasset.com"
},
"contributors": [
"Stefano Baghino <stefano.baghino@digitalasset.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digital-asset/ex-tutorial-nodejs/issues"
},
"homepage": "https://github.com/digital-asset/ex-tutorial-nodejs#readme"
}