-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.27 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@bmiddha/webhooks",
"version": "2.0.2",
"description": "Easy-to-use, WebHooks library written in TypeScript.",
"license": "MIT",
"author": "Bharat Middha <[email protected]> (https://bmiddha.com)",
"homepage": "https://bmiddha.github.io/webhooks/",
"repository": {
"type": "git",
"url": "git+https://github.com/bmiddha/webhooks.git"
},
"bugs": {
"url": "https://github.com/bmiddha/webhooks/issues"
},
"main": "dist/index.js",
"module": "dist/webhooks.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsdx build",
"husky": "husky install",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test -i",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch"
},
"typings": "dist/index.d.ts",
"dependencies": {
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"ioredis": "^4.27.2",
"mongoose": "^5.12.7"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"mongoose": {
"optional": true
}
},
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/ioredis": "^4.26.1",
"@types/mockingoose": "^2.13.0",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"@types/redis-mock": "^0.17.0",
"husky": "^6.0.0",
"ioredis": "^4.27.2",
"ioredis-mock": "^5.5.5",
"lint-staged": "^11.0.0",
"mongodb-memory-server": "^6.9.6",
"mongoose": "^5.12.7",
"nock": "^13.0.11",
"prettier-package-json": "^2.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"keywords": [
"callback",
"http",
"ioredis",
"redis",
"types",
"typescript",
"webhooks"
],
"engines": {
"node": ">=12"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"(src|test)/**": [
"yarn lint:fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}