-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "@ltonetwork/veramo-plugin",
"version": "0.0.0",
"description": "Veramo plugins to manage DIDs and verifiable credentials on LTO Network",
"author": "Arnold Daniels <[email protected]>",
"repository": "[email protected]:ltonetwork/lto-veramo-plugin.git",
"bugs": "https://github.com/ltonetwork/lto-veramo-plugin/issues",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc",
"test": "mocha --require ts-node/register 'test/**/*.spec.ts'",
"lint": "eslint src --ext .ts,.tsx",
"lint-fix": "eslint src --ext .ts,.tsx --fix"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jsdom": "^20.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.3",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"sinon": "^15.2.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@ltonetwork/lto": "^0.15.13",
"@veramo/core": "^4.2.0",
"@veramo/did-manager": "^4.2.0",
"cross-fetch": "^4.0.0"
}
}