-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (34 loc) · 932 Bytes
/
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
{
"name": "@0xpolygonhermez/zkasmcom",
"version": "2.0.0",
"bin": {
"zkasm": "src/zkasm.js"
},
"description": "zkASM compiler",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build_parser_zkasm": "mkdir -p build; ./node_modules/.bin/jison src/zkasm_parser.jison -o build/zkasm_parser.js",
"build_parser_command": "mkdir -p build; ./node_modules/.bin/jison src/command_parser.jison -o build/command_parser.js",
"build": "npm run build_parser_zkasm && npm run build_parser_command"
},
"keywords": [
"zero",
"knowledge",
"zkevm",
"ethereum",
"hermez",
"polygon"
],
"author": "Polygon Hermez",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/0xpolygonhermez/zkasmcom.git"
},
"dependencies": {
"ffjavascript": "^0.2.46",
"jison": "^0.4.18",
"yargs": "^17.1.1"
}
}