@smartpy/timelock
Version:
Tezos Timelock
49 lines (48 loc) • 986 B
JSON
{
"name": "@smartpy/timelock",
"description": "Tezos Timelock",
"version": "0.0.9",
"main": "dist/timelock.js",
"keywords": [
"tezos",
"SmartPy",
"timelock"
],
"license": "MIT",
"files": [
"dist"
],
"types": "dist/types",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"ci-test": "CI=true jest --runInBand --detectOpenHandles",
"prettier": "prettier --list-different 'src/**/*.{js,ts}'",
"prettier:fix": "prettier --write 'src/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix"
},
"dependencies": {
"@smartpy/hacl-wasm": "^0.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-typescript": "8.2.5",
"jest": "26.5.0",
"rollup": "2.58.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "26.5.0",
"tslib": "2.3.1",
"typescript": "4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}