-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 KB
/
package.json
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
{
"name": "@truepic/webhook-verifier",
"version": "1.5.0",
"description": "Verify webhooks from Truepic Vision or Lens in your Node.js app",
"homepage": "https://github.com/TRUEPIC/webhook-verifier-nodejs#readme",
"bugs": "https://github.com/TRUEPIC/webhook-verifier-nodejs/issues",
"license": "MIT",
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TRUEPIC/webhook-verifier-nodejs.git"
},
"files": [
"src",
"!src/**/*.test.js"
],
"scripts": {
"docs": "jsdoc src --recurse --destination docs",
"lint": "npm run lint:format && npm run lint:quality",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:quality": "eslint .",
"lint:quality:fix": "eslint --fix .",
"release": "release-it --only-version",
"test": "node --test"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.12.0",
"globals": "^15.12.0",
"jsdoc": "^4.0.4",
"prettier": "3.3.3",
"release-it": "^17.10.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}