-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.36 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
{
"name": "endor",
"version": "0.0.0",
"private": true,
"description": "Credential Endorsement PoC inspired by SCITT.",
"main": "index.js",
"scripts": {
"test": "jest",
"shove": "git add -A; git commit -m ':rocket:'; git push origin main",
"claim:prepare": "cp ./docs/inbox/example.json ./docs/inbox/claim.json",
"claim:review": "node ./scripts/review-claim.js",
"claim:endorse": "node ./scripts/endorse-claim.js",
"drop-all-claims": "rm ./docs/claims/urn:uuid:*",
"drop-all-endorsements": "rm ./docs/endorsements/urn:uuid:*",
"registry:test": "npm run registry:drop; npm run claim:prepare && npm run claim:review && npm run claim:endorse && npm run registry:update",
"registry:update": "node ./scripts/build-pages-registry.js",
"registry:drop": "npm run drop-all-claims && npm run drop-all-endorsements"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OR13/endor.git"
},
"author": "Orie Steele",
"license": "MIT",
"bugs": {
"url": "https://github.com/OR13/endor/issues"
},
"homepage": "https://github.com/OR13/endor#readme",
"devDependencies": {
"@transmute/did-key.js": "^0.3.0-unstable.8",
"@transmute/json-web-signature": "^0.7.0-unstable.64",
"@transmute/vc.js": "^0.7.0-unstable.64",
"ajv": "^8.11.0",
"jest": "^28.1.3",
"jose": "^4.8.3",
"uuid": "^8.3.2"
}
}