-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "@dsnp/did-resolver",
"version": "0.0.0",
"description": "A DSNP DID resolver",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"postbuild": "npm run package",
"clean": "rm -Rf dist",
"prepackage": "cp CONTRIBUTING.md README.md LICENSE ./dist",
"package": "node --no-warnings scripts/package.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "tsc --noEmit --pretty && eslint --fix \"**/*.ts\"",
"lint": "tsc --noEmit --pretty && eslint \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/LibertyDSNP/dsnp-did-resolver.git"
},
"author": "DSNP.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LibertyDSNP/dsnp-did-resolver/issues"
},
"homepage": "https://github.com/LibertyDSNP/dsnp-did-resolver#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@digitalbazaar/did-io": "^2.0.0"
}
}