-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
48
{
"name": "poseidon-bls12381",
"version": "1.0.2",
"description": "Poseidon implementation for the BLS12-381 elliptic curve",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git+https://github.com/jmagan/poseidon-bls12381.git",
"author": "Juan Salvador Magán Valero",
"license": "MIT",
"keywords": [
"poseidon",
"bls12-381",
"hash",
"hash function",
"hashing",
"elliptic curve",
"zero knowledge",
"zk",
"zkp",
"zcash"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "rm -rf ./lib && tsc --build",
"lint": "prettier --write --ignore-unknown src/**/* tests/**/*",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown",
"tests/**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
}
}