-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "@cloudflare/zkp-ecdsa",
"version": "0.2.5",
"description": "zkp-ecdsa: A Typescript Implementation of ZKAttest",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/zkp-ecdsa.git"
},
"contributors": [
"Armando Faz <[email protected]>",
"Watson Ladd <[email protected]>"
],
"keywords": [
"ecdsa",
"zero-knowledge",
"cryptography",
"crypto"
],
"type": "module",
"main": "./lib/src/index.js",
"module": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"files": [
"lib/src/!(*.tsbuildinfo)",
"tsconfig.json"
],
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/benchmark": "2.1.2",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"0x": "5.4.1",
"benchmark": "2.1.4",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.5.0",
"prettier": "2.7.1",
"pvutils": "1.1.3",
"typescript": "4.8.4",
"webpack-cli": "4.10.0"
},
"scripts": {
"build": "tsc -b",
"prepare": "tsc -b",
"test": "tsc -b test && node ./lib/test/all.test.js",
"bench": "tsc -b bench && node ./lib/bench/all.bench.js",
"bench:hrtime": "tsc -b bench && node ./lib/bench/hrtime.js",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"flame": "tsc -b bench && 0x --output-dir flames ./lib/bench/flamegraph.js",
"format": "prettier './(src|test|bench)/**/*.ts' --write",
"bundle": "tsc -b && webpack"
},
"dependencies": {
"typedjson": "1.8.0"
},
"overrides": {
"d3-color": "3.1.0"
}
}