-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 1.84 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
{
"name": "@aldenml/ecc",
"version": "1.1.0",
"description": "elliptic curves crypto functions",
"main": "index.js",
"types": "./dist/index.d.ts",
"files": [
"index.js",
"libecc.js",
"util.js",
"hash.js",
"kdf.js",
"aead.js",
"oprf.js",
"opaque.js",
"pre.js",
"package.json",
"tsconfig.json",
"ecc.test.js",
"util.test.js",
"hash.test.js",
"mac.test.js",
"kdf.test.js",
"aead.test.js",
"ed25519.test.js",
"bls12_381.test.js",
"oprf.test.js",
"opaque.test.js",
"pre.test.js",
"sign.test.js",
"README.md",
"LICENSE",
"dist/ecc.dev.js",
"dist/ecc.min.js",
"dist/index.d.ts",
"dist/libecc.d.ts",
"dist/util.d.ts",
"dist/kdf.d.ts",
"dist/aead.d.ts",
"dist/oprf.d.ts",
"dist/opaque.d.ts",
"dist/pre.d.ts"
],
"scripts": {
"test": "mocha *.test.js",
"pack:dev": "webpack --config webpack.config.cjs --env=mode=dev",
"pack:prod": "webpack --config webpack.config.cjs --env=mode=prod",
"pack": "npm run pack:dev && npm run pack:prod && npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aldenml/ecc.git"
},
"keywords": [
"elliptic-curves",
"crypto",
"hash",
"sha256",
"sha512",
"ed25519",
"ristretto255",
"bls12-381",
"oprf",
"opaque",
"pake",
"apake",
"authentication",
"bls-signature",
"proxy-re-encryption",
"hkdf",
"threshold-cryptography",
"threshold-signature"
],
"author": "aldenml",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldenml/ecc/issues"
},
"homepage": "https://github.com/aldenml/ecc/tree/master/bindings/js#ecc",
"type": "module",
"devDependencies": {
"mocha": "^10.2.0",
"typescript": "4.5.5",
"webpack": "5.76.2",
"webpack-cli": "4.9.1"
}
}