-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "trusted_tangle_id",
"version": "0.0.1",
"description": "Reference implementation for the trusted tangle id protocol",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node lib/did.ts",
"test": "ts-node test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/F-Node-Karlsruhe/Trusted_Tangle_ID.git"
},
"keywords": [
"IOTA",
"DID",
"WOT"
],
"author": "Robin Lamberti, Christian Fries",
"license": "ISC",
"bugs": {
"url": "https://github.com/F-Node-Karlsruhe/Trusted_Tangle_ID/issues"
},
"homepage": "https://github.com/F-Node-Karlsruhe/Trusted_Tangle_ID#readme",
"devDependencies": {
"@types/elliptic": "^6.4.10",
"@types/node": "^12.12.3",
"@types/randomstring": "^1.1.6",
"eslint": "^6.6.0",
"randomstring": "^1.1.5",
"ts-node": "^8.5.4"
},
"dependencies": {
"@iota/core": "^1.0.0-beta.21",
"@iota/mam": "^0.7.3",
"elliptic": "^6.5.1",
"typescript": "^3.7.4"
}
}