forked from digitalcredentials/security-document-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.29 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
{
"name": "@digitalcredentials/security-document-loader",
"description": "A secure and convenient JSON-LD document loader for Node.js, browsers, and React Native.",
"version": "5.0.0",
"scripts": {
"build": "npm run clear && tsc -p tsconfig.json && ./build-dist.sh",
"clear": "rimraf dist/*",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"rebuild": "npm run clear && npm run build",
"test": "npm run lint && npm run test-node",
"test-karma": "karma start karma.conf.js",
"test-node": "cross-env NODE_ENV=test TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/*.ts'"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE.md"
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@digitalbazaar/http-client": "^4.1.0",
"@digitalbazaar/vc-status-list-context": "^3.0.1",
"@digitalcredentials/crypto-ld": "^7.0.2",
"@digitalcredentials/dcc-context": "^1.0.0",
"@digitalcredentials/did-io": "^1.0.2",
"@digitalcredentials/did-method-key": "^2.0.3",
"@digitalcredentials/ed25519-verification-key-2020": "^3.2.2",
"@digitalcredentials/open-badges-context": "^2.1.0",
"@digitalcredentials/x25519-key-agreement-key-2020": "^3.0.0",
"@interop/did-web-resolver": "^4.0.0",
"credentials-context": "^2.0.0",
"did-context": "^3.1.1",
"ed25519-signature-2020-context": "^1.1.0",
"html-entities": "^2.3.3",
"jsonld-document-loader": "^1.2.1",
"x25519-key-agreement-2020-context": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-typescript": "^5.5.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
},
"publishConfig": {
"access": "public"
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": "test/**/*.ts"
},
"engines": {
"node": ">=16.0"
},
"author": {
"name": "Digital Credentials Consortium",
"url": "https://github.com/digitalcredentials/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/security-document-loader"
},
"homepage": "https://github.com/digitalcredentials/security-document-loader",
"bugs": "https://github.com/digitalcredentials/security-document-loader/issues"
}