-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 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
{
"name": "didconf",
"version": "0.0.3",
"description": "CLI to generate a .well-known DID configuration",
"repository": "git@github.com:SertoID/didconf.git",
"main": "build/app.js",
"license": "MIT",
"author": "Italo Borssatto <italo.borssatto@mesh.xyz>",
"bin": {
"didconf": "bin/didconf.js"
},
"scripts": {
"build": "tsc",
"start": "node ./build/app.js",
"dev": "ts-node ./src/app.ts",
"test": "jest",
"test-ci": "jest --coverage=true --maxWorkers 2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^7.2.0",
"elliptic": "6.5.4",
"ethr-did-resolver": "3.0.2",
"js-sha3": "^0.8.0",
"sqlite3": "^5.0.0",
"typeorm": "0.2.31",
"veramo-plugin-did-config": "1.0.6",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"codecov": "^3.8.1",
"typescript": "^4.2.3"
},
"files": [
"package.json",
"bin/**/*",
"build/**/*"
],
"publishConfig": {
"access": "public"
}
}