UNPKG

@tezwell/timelock

Version:

Tezos Timelock

57 lines (56 loc) 1.15 kB
{ "name": "@tezwell/timelock", "version": "0.0.9", "description": "Tezos Timelock", "main": "dist/index.js", "module": "dist/index.js", "keywords": [ "tezos", "SmartPy", "timelock" ], "author": { "name": "Rodrigo Quelhas", "email": "rodrigo_quelhas@outlook.pt" }, "license": "MIT", "files": [ "dist" ], "typings": "dist/types/index.d.ts", "publishConfig": { "access": "public" }, "scripts": { "build": "node scripts/build.js && tsc --build", "test": "jest --runInBand --detectOpenHandles --watch", "ci-test": "CI=true jest --collect-coverage --reporters=default --reporters=jest-junit --reporters=jest-html-reporter" }, "browser": { "fs": false, "constants": false, "stream": false, "crypto": "crypto-browserify" }, "devDependencies": { "@tezwell/hacl-wasm": "0.0.4", "@types/jest": "27.0.3", "buffer": "6.0.3", "crypto-browserify": "3.12.0", "esbuild": "0.14.3", "events": "3.3.0", "jest": "27.4.5", "ts-jest": "27.1.1", "typescript": "4.5.4" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts}": [ "eslint --fix" ] } }