-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1011 Bytes
/
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
{
"name": "@ethereum-attestation-service/transitive-trust-sdk",
"version": "0.1.4",
"description": "A TypeScript SDK for computing transitive trust scores in a graph",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"trust",
"graph",
"transitive",
"sdk"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.2",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.5.0"
},
"dependencies": {
"graphology": "^0.25.4",
"graphology-types": "^0.24.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-attestation-service/transitive-trust-sdk.git"
},
"bugs": {
"url": "https://github.com/ethereum-attestation-service/transitive-trust-sdk/issues"
},
"homepage": "https://github.com/ethereum-attestation-service/transitive-trust-sdk#readme"
}