-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"name": "@truepic/webhook-verifier",
"version": "2.6.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",
"types": "./src/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TRUEPIC/webhook-verifier-nodejs.git"
},
"files": [
"src",
"!src/**/*.test.js",
"!src/**/*.test-d.ts"
],
"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 .",
"pretest:coverage": "node -e \"require('node:fs').mkdirSync('coverage', { recursive: true })\"",
"release": "release-it --only-version",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"typecheck": "tsc"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^18.3.0",
"globals": "^17.11.0",
"jsdoc": "^4.0.5",
"prettier": "3.9.6",
"release-it": "^21.0.2",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}