-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
{
"name": "@coti-io/coti-sdk-typescript",
"version": "0.5.5",
"license": "Apache 2.0",
"description": "A library for encryption, decryption and cryptographic utilities for the COTI blockchain.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "COTI Development",
"repository": {
"type": "git",
"url": "git://github.com/coti-io/coti-sdk-typescript.git"
},
"homepage": "https://docs.coti.io/coti-v2-documentation/build-on-coti/tools/typescript-sdk",
"keywords": [
"coti",
"privacy",
"ethereum",
"blockchain",
"web3",
"garbled-circuits",
"l2",
"on-chain-compute"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test": "jest",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:report": "node scripts/generate-test-report.js"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node-forge": "^1.3.11",
"dotenv": "^17.2.3",
"ethers": "^6.12.1",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"jest-junit": "^16.0.0",
"xml2js": "^0.6.2",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"node-forge": "^1.3.1"
}
}