-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "@janiscommerce/webhook-trigger",
"version": "2.2.0",
"description": "A wrapper for webhooks integration",
"main": "lib/index.js",
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/ --require tests/bootstrap",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"build-types": "tsc lib/index.js --declaration --allowJs --emitDeclarationOnly --outDir types --skipLibCheck",
"prepare": "husky"
},
"files": [
"lib/",
"types/"
],
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/janis-commerce/webhook-trigger.git"
},
"author": "Janis",
"license": "ISC",
"bugs": {
"url": "https://github.com/janis-commerce/webhook-trigger/issues"
},
"homepage": "https://github.com/janis-commerce/webhook-trigger#readme",
"devDependencies": {
"@types/node": "^22.1.0",
"aws-sdk-client-mock": "^4.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.1.4",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"nyc": "^17.0.0",
"sinon": "^18.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@janiscommerce/lambda": "^6.2.1",
"@janiscommerce/log": "^5.0.14",
"js-yaml": "^4.1.0",
"lllog": "^1.1.2"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.624.0"
},
"engines": {
"node": ">=18"
}
}