-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "@ula-aca/schema",
"version": "0.0.2",
"description": "Universal Ledger Agent plugin for creating and retrieving schemas from the ledger connected to Aries Cloudagent",
"scripts": {
"build": "../../node_modules/.bin/tsc -b ./tsconfig.json",
"clean": "yarn build --clean",
"prepublishOnly": "yarn clean && yarn build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"aries",
"cloudagent",
"ula",
"universal-ledger-agent",
"ssi",
"did",
"identity",
"blockchain",
"indy",
"schema"
],
"repository": {
"type": "git",
"url": "https://github.com/ula-aca/ula-aca-plugins",
"directory": "packages/schema"
},
"contributors": [
"Timo Glastra <[email protected]>",
"Karim Stekelenburg <[email protected]>"
],
"homepage": "https://github.com/ula-aca/ula-aca-plugins/tree/master/packages/schema",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"dependencies": {
"@ula-aca/aries-cloudagent-interface": "^1.0.1",
"@ula-aca/core": "^0.0.2",
"axios": "^0.19.2",
"universal-ledger-agent": "^0.1.2"
}
}