This repository was archived by the owner on Apr 26, 2023. It is now read-only.
forked from decentralized-identity/did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.1 KB
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
{
"name": "@symfoni/did-resolver",
"version": "4.0.0",
"description": "Resolve DID documents",
"type": "module",
"source": "src/resolver.ts",
"main": "./lib/resolver.cjs",
"module": "./lib/resolver.module.js",
"unpkg": "./lib/resolver.umd.js",
"types": "./lib/resolver.d.ts",
"umd:main": "./lib/resolver.umd.js",
"files": [
"lib",
"dist",
"src",
"LICENSE"
],
"exports": {
".": {
"require": "./lib/resolver.cjs",
"import": "./lib/resolver.module.js",
"types": "./lib/resolver.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git@github.com:decentralized-identity/did-resolver.git"
},
"author": "Pelle Braendgaard",
"contributors": [
"Mircea Nistor <mircea.nistor@mesh.xyz>"
],
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"build": "microbundle --compress=false",
"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.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.0.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babel-jest": "29.0.3",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.0.3",
"microbundle": "0.15.0",
"prettier": "2.7.1",
"semantic-release": "19.0.3",
"typescript": "4.7.4"
},
"resolutions": {
"@babel/core": "7.19.3"
}
}