forked from Xin128/ElectionGuard-COMP413
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.72 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "electionguard",
"version": "0.1.0",
"description": "Client-side implementation of ElectionGuard for ballot encryption",
"contributors": [
"Han Guo <[email protected]>",
"Xin Hao <[email protected]>",
"Shreyas Minocha <[email protected]>",
"Dan S. Wallach <[email protected]> or <[email protected]>",
"Arthur Wu <[email protected]>",
"Yanyu Zhong <[email protected]>",
"Zihe Zhao <[email protected]>"
],
"repository": "https://github.com/danwallach/ElectionGuard-TypeScript",
"license": "MIT",
"keywords": [
"cryptography",
"electionguard",
"voting"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"browser": "dist/electionguard.js",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/electionguard.umd.js"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/create-hash": "^1.2.2",
"@types/create-hmac": "^1.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^14.11.2",
"@types/randombytes": "^2.0.0",
"@types/seedrandom": "^3.0.2",
"@types/workerpool": "^6.1.0",
"fast-check": "^2.25.0",
"gts": "^3.1.0",
"jest": "^28.1.0",
"rollup": "^2.76.0",
"rollup-plugin-deno": "^1.0.1",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-polyfill-node": "^0.10.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.22.16",
"typescript": "^4.7.2"
},
"dependencies": {
"@stdlib/assert-has-arrow-function-support": "^0.0.2",
"@stdlib/assert-has-async-await-support": "^0.0.8",
"@stdlib/assert-has-bigint-support": "^0.0.8",
"@stdlib/assert-has-class-support": "^0.0.8",
"@stdlib/assert-has-map-support": "^0.0.8",
"@stdlib/assert-has-set-support": "^0.0.8",
"@stdlib/assert-has-uint8array-support": "^0.0.8",
"bigint-mod-arith": "^3.1.0",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"fp-ts": "^2.12.1",
"io-ts": "^2.2.16",
"randombytes": "^2.1.0",
"seedrandom": "^3.0.5"
},
"scripts": {
"docs": "typedoc",
"lint": "gts lint",
"clean": "gts clean && rimraf ./dist",
"build": "rollup -c rollup.config.js",
"fix": "gts fix",
"prepare": "npm run clean && npm run build",
"posttest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"elgamal-bench": "ts-node bench/elgamal-benchmark"
},
"engines": {
"node": ">=10.4.0"
}
}