-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.74 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
{
"name": "infra-did-js",
"version": "1.1.4",
"description": "InfraBlockchain DID library creating and managing DIDs",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"umd:main": "lib/index.umd.js",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/InfraBlockchain/infra-did-js.git"
},
"files": [
"lib",
"src",
"LICENSE"
],
"engines": {
"node": ">=18.14"
},
"author": "Bezalel Lim <bezalel@infrablockchain.com>",
"contributors": [
{
"name": "Evan kim",
"email": "keispace.kyj@gmail.com",
"url": "https://github.com/keispace"
},
{
"name": "CuteWisp",
"email": "sweatpotato13@gmail.com",
"url": "https://github.com/sweatpotato13"
}
],
"license": "MIT",
"scripts": {
"test": "jest",
"test:ci": "jest -u --coverage",
"build:js": "microbundle",
"build": "npm run build:js",
"build:webpack": "./node_modules/.bin/webpack",
"release": "semantic-release --debug",
"example:chain": "ts-node example/chain.ts",
"example:verifiable": "ts-node example/verifiable.ts",
"example:bbs": "ts-node example/bbs-verifiable.ts"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/elliptic": "^6.4.18",
"@types/jest": "26.0.23",
"@types/jsonschema": "^1.1.1",
"@types/node": "^20.10.3",
"babel-jest": "24.5.0",
"codecov": "3.8.2",
"did-jwt-vc": "^3.2.14",
"did-resolver": "^4.1.0",
"infra-did-resolver": "^0.3.3",
"jest": "27.0.4",
"microbundle": "0.15.1",
"prettier": "3.1.0",
"ts-jest": "27.0.3",
"ts-lint": "4.5.1",
"ts-node": "^10.9.1",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/core": "^7.23.5",
"@babel/polyfill": "^7.12.1",
"@docknetwork/crypto-wasm-ts": "0.48.0",
"@docknetwork/node-types": "^0.16.0",
"@juanelas/base64": "^1.1.5",
"@polkadot/api": "9.7.1",
"axios": "^1.6.2",
"babel-loader": "^9.1.3",
"base64url": "^3.0.1",
"browserify": "^17.0.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"buffer-browserify": "^0.2.5",
"crypto-browserify": "^3.12.0",
"did-jwt": "^7.4.5",
"elliptic-expo": "^6.5.3",
"infrablockchain-js": "^22.1.4",
"jose": "^5.1.3",
"js-sha256": "^0.10.1",
"json-canonicalize": "1.0.4",
"jsonld": "^5.0.0",
"jsonld-signatures": "^9.3.1",
"jsonschema": "1.4.1",
"node-fetch": "^2.6.1",
"stream-browserify": "^3.0.0"
}
}