This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
90 lines (90 loc) · 3.02 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
{
"name": "3id-did-provider",
"version": "1.2.0-beta.1",
"description": "Create and manage 3IDs",
"main": "./lib/threeid-provider.js",
"types": "./lib/threeid-provider.d.ts",
"type": "module",
"directories": {
"lib": "lib"
},
"exports": {
".": "./lib/threeid-provider.js"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src --ext .js,.ts",
"test": "./node_modules/.bin/jest --coverage --runInBand --env=node",
"build": "./node_modules/.bin/tsc --project tsconfig.json",
"prepublishOnly": "npm run build && npm run generate-readme",
"prepare": "npm run build",
"generate-readme": "cp readme-template.md README.md; jsdoc2md --configure ./jsdoc2md.json -g none -d 3 'src/**/*.ts' >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicstudio/js-3id-did-provider.git"
},
"author": "3box <[email protected]>",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/ceramicstudio/js-3id-did-provider/issues"
},
"homepage": "https://github.com/ceramicstudio/js-3id-did-provider#readme",
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.13.16",
"@ceramicnetwork/3id-did-resolver": "^1.4.11",
"@ceramicnetwork/http-client": "^1.5.2",
"@ceramicnetwork/stream-tile": "^1.5.2",
"@ceramicstudio/idx-constants": "^1.0.0",
"@ethersproject/hdnode": "^5.0.8",
"@glazed/tile-loader": "^0.1.2",
"@stablelib/random": "^1.0.0",
"@stablelib/x25519": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"cids": "^1.1.6",
"dag-jose-utils": "^0.1.1",
"did-jwt": "^5.12.1",
"did-resolver": "^3.1.5",
"dids": "^2.4.3",
"fast-json-stable-stringify": "^2.1.0",
"key-did-provider-ed25519": "^1.1.0",
"key-did-resolver": "^1.4.0",
"rpc-utils": "^0.3.4",
"store": "^2.0.12",
"uint8arrays": "^2.1.5"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.12.1",
"@ceramicnetwork/common": "^1.10.0",
"@ceramicnetwork/core": "^1.11.2",
"@ceramicnetwork/streamid": "^1.3.5",
"@ceramicstudio/idx-tools": "^0.11.0",
"@polkadot/util": "^6.3.1",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.41",
"@types/store": "^2.0.2",
"babel-core": "7.0.0-bridge.0",
"blockcodec-to-ipld-format": "^2.0.0",
"dag-jose": "^0.3.0",
"eslint": "^7.24.0",
"eslint-config-3box": "^0.4.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ipfs-core": "~0.7.1",
"it-all": "^1.0.2",
"jest": "^27.4.2",
"jest-resolver-enhanced": "^1.0.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"prettier": "^2.2.1",
"tmp-promise": "^3.0.2",
"typescript": "^4.1.3"
}
}