-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
78 lines (78 loc) · 3.05 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
{
"name": "@iexec/web3mail",
"version": "1.1.1",
"description": "This product enables users to confidentially store data–such as mail address, documents, personal information ...",
"main": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"logo-iexec.png",
"src",
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"check-types": "tsc --noEmit",
"test:prepare": "node tests/scripts/prepare-bellecour-fork-for-tests.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --forceExit -b",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --forceExit --coverage",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/unit/**/*.test.ts\" -b",
"test:unit:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/unit/**/*.unit.ts\" --coverage",
"test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --forceExit -b",
"test:e2e:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --coverage",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\"",
"check-format": "prettier --check \"src/**/*.ts\"",
"stop-test-stack": "cd tests && docker compose down --volumes --remove-orphans",
"start-test-stack": "cd tests && npm run stop-test-stack && node scripts/prepare-test-env.js && docker compose build && docker compose up -d && node scripts/prepare-bellecour-fork-for-tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/web3mail-sdk.git"
},
"keywords": [
"iExec"
],
"author": "iExec",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/web3mail-sdk/issues"
},
"homepage": "https://github.com/iExecBlockchainComputing/web3mail-sdk#readme",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/random": "^5.7.0",
"buffer": "^6.0.3",
"ethers": "^6.13.2",
"graphql-request": "^6.1.0",
"iexec": "^8.12.0",
"kubo-rpc-client": "^4.1.1",
"yup": "^1.1.1"
},
"devDependencies": {
"@iexec/dataprotector": "^2.0.0-beta.8",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-sonarjs": "^0.21.0",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"typescript": "^5.5.2",
"whitelist-smart-contract": "github:iExecBlockchainComputing/whitelist-smart-contract#0.2.0"
}
}