-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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": "@kravc/identity",
"version": "1.7.0",
"description": "Library to operate as a self-sovereign identity.",
"keywords": [
"SSI",
"JSON-LD",
"Identity",
"Issuer",
"Holder",
"Verifier",
"Linked Data",
"Semantic Web",
"Verifiable Credential",
"Self Sovereign Identity"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "http://github.com/alexkravets/identity.git"
},
"directories": {
"src": "src"
},
"scripts": {
"test": "eslint src/ && NODE_PATH=./src nyc mocha \"./src/**/*.spec.js\""
},
"author": "Oleksandr Kravets <a@kra.vc>",
"license": "ISC",
"dependencies": {
"@kravc/schema": "^2.3.0",
"@transmute/did-key-secp256k1": "0.2.1-unstable.42",
"buffer": "^6.0.3",
"js-sha256": "^0.9.0",
"jsonld": "^5.2.0",
"lodash.defaults": "^4.2.0",
"tslib": "^2.3.1",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.6.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"nyc": {
"include": "src",
"exclude": "**/*.spec.js"
}
}