@hookflo/tern
Version:
A robust, scalable webhook verification framework supporting multiple platforms and signature algorithms
73 lines (72 loc) • 1.84 kB
JSON
{
"name": "@hookflo/tern",
"version": "2.0.0",
"description": "A robust, scalable webhook verification framework supporting multiple platforms and signature algorithms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node dist/test.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"release:patch": "npm run build && npm version patch && npm publish",
"release:minor": "npm run build && npm version minor && npm publish",
"release:major": "npm run build && npm version major && npm publish",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"keywords": [
"Hookflo",
"webhook",
"verification",
"security",
"hmac",
"signature",
"github",
"stripe",
"clerk",
"supabase",
"typescript",
"node",
"express",
"nextjs"
],
"author": "Prateek Jain",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hookflo/tern"
},
"bugs": {
"url": "https://github.com/Hookflo/tern/issues"
},
"homepage": "https://github.com/Hookflo/tern#readme",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "29.5.0",
"@types/node": "20.0.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "29.5.0",
"prettier": "3.0.0",
"ts-jest": "29.1.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}