-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.75 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
{
"name": "infra-did-resolver",
"version": "0.3.3",
"description": "Resolve DID documents for InfraBlockchain DIDs",
"main": "lib/index.umd.js",
"source": "src/index.ts",
"module": "lib/index.modern.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/InfraBlockchain/infra-did-resolver.git"
},
"files": [
"index.d.ts",
"dist",
"lib",
"src",
"LICENSE",
"babel-preset.js",
".babelrc"
],
"license": "MIT",
"keywords": [
"DID",
"DID document",
"PKI",
"resolver",
"resolve",
"Verifiable Credential",
"W3C",
"did:infra"
],
"scripts": {
"build": "microbundle",
"lint": "eslint \"src/**/*.[jt]s\"",
"format": "prettier --write \"src/**/*.[jt]s\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"test": "jest",
"test-with-coverage": "jest --coverage && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost/",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-typescript": "7.13.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"babel-jest": "26.6.3",
"codecov": "3.8.1",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"jest": "26.6.3",
"microbundle": "0.13.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"typescript": "4.2.3"
},
"dependencies": {
"buffer": "^5.1.0",
"did-resolver": "^3.0.2",
"elliptic": "^6.5.3",
"eosjs": "^21.0.3",
"node-fetch": "^2.6.1"
}
}