-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
64 lines (64 loc) · 2.2 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
{
"name": "mind-lake-sdk",
"version": "1.0.13",
"description": "",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "father dev",
"prettier": "prettier --write src/**/*.{js,jsx,tsx,ts,json}",
"test-all": "npm run test-create && npm run test-delete && npm run test-drop && npm run test-encrypt && npm run test-insert && npm run test-link && npm run test-update && npm run test-sharing",
"test-create": "jest create",
"test-delete": "jest delete",
"test-drop": "jest drop",
"test-encrypt": "jest encrypt",
"test-insert": "jest insert",
"test-link": "jest link --testNamePattern=alice_init_data && jest link --testNamePattern=test_link_table_to_otherwalletcocoon_bob",
"test-sharing": "jest sharing --testNamePattern=Alice_init_encrypt_data && jest sharing --testNamePattern=no_grant_bob_try_to_decrypt && jest sharing --testNamePattern=grant_column_1 && jest sharing --testNamePattern=confirm_grant && jest sharing --testNamePattern=grant_column_3 && jest sharing --testNamePattern=confirm_grant_3",
"test-update": "jest update",
"build": "cross-env NODE_ENV=production && father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build"
},
"keywords": [
"mind",
"lake",
"mind-lake"
],
"authors": [],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/mind-network/mind-lake-sdk-typescript",
"homepage": "https://github.com/mind-network/mind-lake-sdk-typescript",
"dependencies": {
"@babel/runtime": "^7.21.5",
"@clerk/clerk-js": "^4.56.1",
"@ethersproject/providers": "^5.7.2",
"@metamask/eth-sig-util": "^4.0.0",
"@types/jest": "^29.5.1",
"@types/node-rsa": "^1.1.1",
"axios": "^1.3.6",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.3",
"js-base64": "^3.7.5",
"node-forge": "^1.3.1",
"node-rsa": "^1.1.1",
"uuid": "^9.0.0",
"web3": "^1.9.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"father": "^4.1.8",
"jest": "^29.5.0",
"log4js": "^6.9.1",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
}
}