-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@did-connect/storage-memory",
"description": "Storage engine that uses memory for did-auth",
"version": "2.2.4",
"author": "wangshijun <[email protected]> (https://ocap.arcblock.io)",
"bugs": {
"url": "https://github.com/ArcBlock/did-connect/issues",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"wangshijun <[email protected]> (https://ocap.arcblock.io)"
],
"devDependencies": {
"@arcblock/eslint-config-ts": "0.2.4",
"eslint": "^8.26.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4"
},
"homepage": "https://github.com/ArcBlock/did-connect/tree/master/packagesstorage-memory",
"keywords": [
"did",
"web3"
],
"license": "Apache-2.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/ArcBlock/did-connect/tree/master/packagesstorage-memory"
},
"scripts": {
"lint": "eslint src tests",
"precommit": "CI=1 yarn test",
"prepush": "CI=1 yarn test",
"test": "jest",
"coverage": "npm run test -- --coverage",
"prebuild": "npm run clean",
"build": "tsc",
"check": "tsc --noEmit",
"clean": "rm -rf ./lib"
},
"gitHead": "570a366418890ded86422e168417bae0c9967e35",
"dependencies": {
"@did-connect/storage": "2.2.4",
"@did-connect/types": "2.2.4"
}
}