This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
{
"name": "@acompany-develop/quickmpc-libclient-ts",
"version": "0.1.6",
"description": "QuickMPC client library for TypeScript and JavaScript.",
"main": "./Dist/Bundle.js",
"types": "./Dist/QuickMPC.d.ts",
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"test": "jest",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git://github.com/acompany-develop/QuickMPC-libClient-ts.git"
},
"homepage": "https://github.com/acompany-develop/QuickMPC-libClient-ts",
"bugs": {
"url": "https://github.com/acompany-develop/QuickMPC-libClient-ts/issues"
},
"keywords": [
"QuickMPC",
"Secure Computing",
"Multi Party Computation",
"JavaScript",
"TypeScript"
],
"author": "Acompany",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.3.6",
"dayjs": "^1.11.3",
"google-protobuf": "^3.15.8",
"grpc-web": "^1.3.0",
"ts-node": "^10.1.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.14.5",
"@trust/webcrypto": "^0.9.2",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/uuid": "^8.3.0",
"babel-loader": "^8.1.0",
"crypto-browserify": "^3.12.0",
"express": "^4.17.1",
"grpc_tools_node_protoc_ts": "^5.3.0",
"grpc-tools": "^1.11.2",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-migrate": "^0.1.16",
"typescript": "^4.3.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"jest": {
"testEnvironment": "jsdom",
"rootDir": "./",
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"verbose": false,
"testMatch": [
"**/Tests/**/*test.+(ts)"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"setupFiles": [
"./jest.setup.js"
]
}
}