generated from decentralized-identity/veramo-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "veramo-plugin-did-config",
"description": "veramo plugin that generates DID configuration files to be used in the DIF Well Known DID Configuration standard: https://identity.foundation/.well-known/resources/did-configuration/",
"version": "1.1.1",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"veramo": {
"pluginInterfaces": {
"IWellKnownDidConfigurationPlugin": "./src/types/IWellKnownDidConfigurationPlugin.ts"
}
},
"scripts": {
"build": "tsc",
"generate-plugin-schema": "yarn veramo dev generate-plugin-schema",
"start": "veramo server",
"build:watch": "tsc -b --watch",
"test:ci": "jest --config=jest.json",
"test": "jest --config=jest.json --coverage=false",
"test:watch": "yarn test --watch --verbose",
"clean": "rm -rf tmp && rm database.sqlite && rm -rf build && rm tsconfig.tsbuildinfo"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "27.0.2",
"@types/node-fetch": "^2.5.10",
"@veramo/cli": "3.1.0",
"@veramo/data-store": "3.1.0",
"@veramo/kms-local": "3.1.0",
"codecov": "^3.8.1",
"commitlint": "^11.0.0",
"husky": "^5.0.9",
"jest": "27.2.5",
"jest-extended": "^0.11.5",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@veramo/core": "3.1.0",
"@veramo/message-handler": "3.1.0",
"did-eth-typed-data": "^1.0.6",
"node-fetch": "^2.6.1"
}
}