-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ara-identity",
"version": "0.65.0",
"description": "Create and resolve decentralized identity based Ara identifiers.",
"main": "index.js",
"bin": {
"aid": "bin/aid"
},
"scripts": {
"truffle": "truffle develop",
"test": "ava test/*",
"lint": "eslint .",
"lint-fix": "eslint . --quiet --fix",
"pkg": "./scripts/package.sh",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md"
},
"browserify": {
"transform": [
"brfs"
]
},
"keywords": [
"ara",
"identity",
"decentralized",
"identity",
"did"
],
"author": "Joseph Werle <[email protected]>",
"license": "LGPL-3.0",
"dependencies": {
"ara-console": "^0.3.0",
"ara-context": "^1.0.5",
"ara-crypto": "^0.9.4",
"ara-identity-dns": "^0.3.0",
"ara-network": "^1.4.1",
"ara-runtime-configuration": "^2.0.1",
"ara-secret-storage": "^0.2.1",
"async-exit-hook": "^2.0.1",
"bip39": "^3.0.4",
"brfs": "^2.0.2",
"cfsnet": "^0.20.0",
"debug": "^4.3.1",
"did-document": "^0.6.2",
"did-uri": "^0.5.1",
"ethereumjs-wallet": "^1.0.1",
"extend": "^3.0.1",
"inquirer": "^8.0.0",
"ip": "^1.1.5",
"is-browser": "^2.1.0",
"is-buffer": "^2.0.2",
"is-domain-name": "^1.0.1",
"is-zero-buffer": "^1.0.1",
"keythereum": "^1.0.4",
"ld-cryptosuite-registry": "^0.3.2",
"mirror-folder": "^3.0.0",
"mkdirp": "^1.0.4",
"node-fetch": "^2.3.0",
"pify": "^5.0.0",
"protocol-buffers": "^4.0.4",
"protocol-buffers-encodings": "^1.1.0",
"pump": "^3.0.0",
"random-access-file": "^2.1.1",
"random-access-memory": "^3.0.0",
"randombytes": "^2.1.0",
"rimraf": "^3.0.2",
"table": "^6.6.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.25.0",
"eslint-config-ara": "github:arablocks/eslint-config-ara#semver:^3.0.x",
"eslint-plugin-import": "^2.22.1",
"pkg": "^5.1.0",
"truffle": "^5.3.4",
"web3": "^1.3.5"
},
"peerDependencies": {
"ara-context": "^1.0.5",
"ara-network": "^1.4.1",
"ara-runtime-configuration": "^2.0.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AraBlocks/ara-identity.git"
},
"bugs": {
"url": "https://github.com/AraBlocks/ara-identity/issues"
},
"homepage": "https://github.com/AraBlocks/ara-identity#readme",
"pkg": {
"assets": [
"protobuf/schema.proto"
]
}
}