-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "contentstack-webhook-verify",
"version": "1.0.1",
"description": "A secure Node.js library for verifying Contentstack webhook authenticity with signature verification and replay attack prevention",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run rebuild && npm run lint:check",
"lint:check": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"precommit": "lint-staged --concurrent false",
"prettify": "prettier --write .",
"check-types": "tsc --noEmit",
"test": "echo \"Tests not implemented yet\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanoak/contentstack-webhook-verify.git"
},
"keywords": [
"contentstack",
"webhook",
"Node.js",
"Javascript",
"Typescript",
"library",
"helper",
"npm"
],
"author": "Hanoak",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hanoak/contentstack-webhook-verify/issues"
},
"homepage": "https://github.com/hanoak/contentstack-webhook-verify#readme",
"devDependencies": {
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"husky": "^4.3.8",
"lint-staged": "^15.5.0",
"prettier": "^3.6.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}