-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 906 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
{
"name": "@sismo-core/sismo-libs",
"version": "1.0.0",
"description": "Utils package used in the Sismo Protocol",
"main": "index.js",
"repository": "[email protected]:sismo-core/sismo-utils.git",
"author": "Sismo core",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"build": "yarn && yarn build:crypto && yarn build:kv-merkle-tree",
"build:crypto": "cd packages/crypto && yarn && yarn build",
"build:kv-merkle-tree": "cd packages/kv-merkle-tree && yarn && yarn build"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"ethers": "^5.6.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"publishConfig": {
"access": "restricted"
},
"dependencies": {},
"npmClient": "yarn",
"engines": {
"npm": "NPM IS NOT USED - use yarn instead."
}
}