Files
zk-kit/package.json
2023-09-09 12:01:50 +01:00

81 lines
2.9 KiB
JSON

{
"name": "zk-kit",
"description": "A monorepo of reusable JS libraries for zero-knowledge technologies.",
"version": "0.1.1",
"license": "MIT",
"repository": "git@github.com:privacy-scaling-explorations/zk-kit.git",
"homepage": "https://github.com/privacy-scaling-explorations/zk-kit",
"bugs": "https://github.com/privacy-scaling-explorations/zk-kit/issues",
"private": true,
"scripts": {
"build": "yarn build:js && yarn compile:sol",
"build:js": "yarn workspaces foreach --no-private run build",
"compile:sol": "yarn workspaces foreach --no-private run compile",
"test": "yarn test:js && yarn test:sol",
"test:js": "jest --coverage",
"test:sol": "yarn workspace incremental-merkle-tree.sol test:coverage",
"lint": "eslint . --ext .js,.ts && yarn workspace incremental-merkle-tree.sol lint",
"prettier": "prettier -c .",
"prettier:write": "prettier -w .",
"benchmarks": "rimraf benchmarks/results && ts-node benchmarks/index.ts",
"docs": "typedoc --cname zkkit.pse.dev --githubPages true",
"commit": "cz",
"precommit": "lint-staged",
"postinstall": "yarn build && husky install"
},
"keywords": [
"javascript",
"typescript",
"monorepo",
"zero-knowledge",
"zk-snarks",
"circom"
],
"workspaces": [
"packages/*"
],
"packageManager": "yarn@3.2.1",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.4.6",
"benny": "^3.7.1",
"circomlibjs": "^0.0.8",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.7.0",
"husky": "^8.0.3",
"incrementalquintree": "^1.0.9",
"jest": "^27.4.1",
"jest-config": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.64.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.25.1",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}