-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
42 lines (42 loc) · 1 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": "pilcom",
"version": "0.0.24",
"description": "Polynomial Identity Language (pil)",
"main": "index.js",
"bin": {
"pilcom": "src/pil.js",
"pilverifier": "src/main_pilverifier.js"
},
"scripts": {
"test": "mkdir -p tmp; mocha",
"build_parser_pil": "mkdir -p build; ./node_modules/.bin/jison src/pil_parser.jison -o build/pil_parser.js",
"build": "npm run build_parser_pil"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xpolygonhermez/pilcom.git"
},
"keywords": [
"pil",
"polynomial",
"zero",
"knowledge",
"snark",
"zkevm",
"hermez"
],
"author": "Jordi Baylina",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/0xpolygonhermez/pilcom/issues"
},
"homepage": "https://github.com/0xpolygonhermez/pilcom#readme",
"devDependencies": {
"chai": "^4.3.6",
"ffjavascript": "^0.2.55",
"jison": "^0.4.18",
"mocha": "^10.0.0",
"tmp-promise": "^3.0.3",
"yargs": "^17.2.1"
}
}