Files
zk-kit/package.json
cedoor cb47701f0c chore: add solidity tests to test:prod script
Former-commit-id: a75e6b13d30998afb30545787290c14efda922cb [formerly 54f0cae26bdf5dd343ac52866d668c984d75af5b] [formerly 2d71e7ec547e66990ac8f5fd80e6285b5ed84c9a [formerly 085f8a052a07e411eb5b6443c793796ef7c98422]] [formerly af532aa7d6f1b9a3037b38899ae73cac917f7401 [formerly 63fb9e1ce53b9f79ced7f48b495acbfe7892caa9] [formerly 2ee294e0bfa831b5fb96a9c7bec355f42a8f01f3 [formerly 868c003b27]]]
Former-commit-id: 0f6090279b05fb3029fe23b8ef97f6ebe0865968 [formerly 3829dbe13c89418d037f72141663d1ca2f79f7cf] [formerly 7da121a166290dbbd2a2bd5eb70cc3811e5007c8 [formerly b7e5f50121f68de1151d22763ad32f9a9d348eed]]
Former-commit-id: 8db53678d1958834d86898689f0edeec7b654399 [formerly 1bccfd6d77667a5b214b9355d8b8e9c57a8cc4f2]
Former-commit-id: a88474fbe08413f9b87d5d72317def186f71b78b
2022-02-03 10:22:56 +01:00

81 lines
2.5 KiB
JSON

{
"name": "zk-kit",
"description": "A monorepo of reusable JS libraries for zero-knowledge technologies.",
"license": "MIT",
"repository": "git@github.com:appliedzkp/zk-kit.git",
"homepage": "https://github.com/appliedzkp/zk-kit",
"bugs": "https://github.com/appliedzkp/zk-kit/issues",
"private": true,
"scripts": {
"install": "yarn bootstrap && yarn build",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run --parallel build:watch -- -- --watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn lint && yarn test && lerna run test",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"benchmarks": "rimraf benchmarks/results && ts-node benchmarks/index.ts",
"publish:fp": "lerna publish from-package",
"docs": "lerna run docs",
"clean": "lerna clean",
"commit": "cz",
"precommit": "lint-staged"
},
"keywords": [
"javascript",
"typescript",
"monorepo",
"zero-knowledge",
"zk-snarks",
"circom"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@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.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"incrementalquintree": "^1.0.9",
"jest": "^27.4.1",
"jest-config": "^27.4.7",
"lerna": "^4.0.0",
"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",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}