-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@guildofweavers/genstark-demo",
"version": "0.2.0",
"description": "Examples of using genSTARK library",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Bobbin Threadbare",
"email": "[email protected]"
},
"keywords": [
"stark",
"zero-knowledge",
"cryptography"
],
"repository": {
"type": "git",
"url": "https://github.com/GuildOfWeavers/genSTARK.demo.git"
},
"engines": {
"node": ">=12.7.x"
},
"scripts": {
"clean": "rimraf bin",
"compile": "tsc -p .",
"copyfiles": "copyfiles ./package*.json ./*.d.ts ./*.md \"**/*.air\" \"**/*.aa\" bin",
"build": "npm run clean && npm run copyfiles && npm run compile",
"mimc": "node bin/index.js mimc",
"poseidon": "node bin/index.js poseidon",
"merkle": "node bin/index.js merkle"
},
"devDependencies": {
"@types/node": "12.7.x",
"copyfiles": "2.1.x",
"rimraf": "3.0.x"
},
"dependencies": {
"@guildofweavers/genstark": "0.7.x",
"@types/elliptic": "6.4.x",
"elliptic": "6.5.x"
}
}