forked from veramolabs/ens-did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.23 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ens-did-resolver",
"version": "1.0.4",
"description": "Resolve DID documents for ENS",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.module.js",
"unpkg": "lib/index.umd.js",
"types": "lib/index.d.ts",
"umd:main": "lib/index.umd.js",
"repository": {
"type": "git",
"url": "[email protected]:veramolabs/ens-did-resolver.git"
},
"files": [
"lib",
"src",
"LICENSE"
],
"author": "Oliver Terbu",
"contributors": [
"Mircea Nistor <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"did:ens",
"DID",
"DID document",
"PKI",
"resolver",
"Verifiable Credential",
"W3C",
"ethereum",
"ethereumAddress",
"blockchainAccountId",
"ENS"
],
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"build:js": "microbundle --compress=false",
"build": "yarn lint && yarn build:js && yarn test",
"format": "prettier --write \"src/**/*.[jt]s\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepublishOnly": "yarn test:ci && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**",
"!**/__tests__/**"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.[jt]s"
]
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@babel/preset-typescript": "7.24.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"ganache-cli": "6.12.2",
"jest": "29.7.0",
"microbundle": "0.15.1",
"prettier": "3.2.5",
"semantic-release": "21.1.2",
"typescript": "5.4.4"
},
"dependencies": {
"@ethersproject/bignumber": "^5.1.0",
"@ethersproject/providers": "^5.1.0",
"did-resolver": "^4.0.0"
}
}