-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "zksen",
"version": "0.0.1",
"description": "Implementation of Bulletproof for ZK SPL Token",
"main": "index.js",
"scripts": {
"start": "nodemon index.ts",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"predeploy": "typedoc --excludePrivate --excludeProtected index.ts",
"deploy": "gh-pages -d docs",
"test": "npm run build && mocha --require ts-node/register -t 120000 test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DescartesNetwork/zkSen.git"
},
"keywords": [
"bulletproof",
"zk",
"spl",
"sentre"
],
"author": "Tu Phan",
"license": "MIT",
"bugs": {
"url": "https://github.com/DescartesNetwork/zkSen/issues"
},
"homepage": "https://github.com/DescartesNetwork/zkSen#readme",
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"ts-mocha": "^9.0.2",
"ts-node": "^10.5.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
},
"dependencies": {
"@noble/ed25519": "^1.6.0",
"@types/chai": "^4.3.0",
"bn.js": "^5.2.0",
"chai": "^4.3.6",
"tweetnacl": "^1.0.3"
}
}