-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
105 lines (105 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@interop/did-web-resolver",
"description": "A did:web method Decentralized Identifier (DID) resolver for the did-io library.",
"version": "3.0.1",
"author": {
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/did-web-driver"
},
"homepage": "https://github.com/interop-alliance/did-web-driver",
"bugs": "https://github.com/interop-alliance/did-web-driver/issues",
"scripts": {
"rollup": "rollup -c rollup.config.js",
"build": "npm run clear && npm run rollup && ./build-dist.sh",
"clear": "rimraf dist/ && mkdir dist",
"prepare": "npm run build",
"rebuild": "npm run clear && npm run build",
"test": "npm run standard && npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha -r esm --preserve-symlinks -t 10000 test/**/*.spec.js",
"test-karma": "karma start test/karma.conf.js",
"nyc": "cross-env NODE_ENV=test nyc npm run test-node",
"standard": "standard --fix"
},
"files": [
"dist",
"src",
"rollup.config.js",
"build-dist.sh",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@digitalcredentials/bnid": "^2.1.1",
"@digitalcredentials/did-io": "^1.0.2",
"@digitalcredentials/http-client": "^1.2.2",
"did-context": "^3.1.1",
"ed25519-signature-2020-context": "^1.1.0",
"whatwg-url": "^11.0.0",
"x25519-key-agreement-2020-context": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@digitalcredentials/ed25519-verification-key-2020": "^3.2.2",
"@digitalcredentials/x25519-key-agreement-key-2020": "^2.0.2",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"crypto-ld": "^6.0.0",
"dirty-chai": "^2.0.1",
"esm": "^3.2.25",
"karma": "^6.3.9",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"sinon": "^12.0.1",
"standard": "^16.0.4",
"webpack": "^5.65.0"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it",
"require"
]
},
"engines": {
"node": ">=12.0"
}
}