forked from chancehudson/poseidon-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "poseidon-solidity",
"version": "0.0.5",
"description": "Poseidon hash function implemented in Solidity",
"repository": {
"type": "git",
"url": "https://github.com/vimwitch/poseidon-solidity.git"
},
"keywords": [
"poseidon",
"solidity",
"zk",
"ethereum",
"hash"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "prettier {test/*,src/*.mjs,deploy/*.js}",
"pre": "node scripts/pre.mjs",
"build": "node src/build.mjs && hardhat compile",
"compile": "hardhat compile",
"size": "hardhat size-contracts",
"test": "hardhat test"
},
"author": "Chance Hudson",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"big-integer": "^1.6.51",
"circomlibjs": "^0.0.8",
"hardhat": "^2.12.7",
"hardhat-contract-sizer": "^2.8.0",
"poseidon-lite": "^0.0.2",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}