mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: fa4cc945d0f77594e87a2e40b06b15f21b1a2c3b [formerly 1e2b99acf7]
Former-commit-id: 4ddf55ce2a29acd6ce12da206fed08ab22051d59
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "libsem",
|
|
"version": "2.0.0",
|
|
"description": "A monorepo of JavaScript libraries for Semaphore.",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"install": "npm run bootstrap && npm run build",
|
|
"bootstrap": "lerna bootstrap --no-ci",
|
|
"build": "lerna run build",
|
|
"build:watch": "lerna run --parallel build:watch -- -- --watch",
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --coverage --watch",
|
|
"test:prod": "npm run lint && npm test",
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
"publish:fp": "lerna publish from-package",
|
|
"clean": "lerna clean"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/appliedzkp/libsemaphore.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/appliedzkp/libsemaphore/issues"
|
|
},
|
|
"homepage": "https://github.com/appliedzkp/libsemaphore#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.8",
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.10.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
"@typescript-eslint/parser": "^5.1.0",
|
|
"babel-jest": "^27.3.1",
|
|
"bigint-conversion": "^2.1.12",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"jest": "^27.2.5",
|
|
"jest-config": "^27.2.5",
|
|
"lerna": "^4.0.0",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.7",
|
|
"ts-node": "^10.4.0",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"@libsem/types": "^1.0.7"
|
|
}
|
|
}
|