-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@bmiddha/webhooks",
"version": "1.0.2",
"description": "Easy-to-use, object oriented WebHooks library written in TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha -r ts-node/register src/tests/**/*.spec.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmiddha/webhooks.git"
},
"keywords": ["typescript", "webhooks", "webhooks", "callback", "http", "redis", "ioredis", "types"],
"author": {
"name": "Bharat Middha",
"url": "https://bmiddha.com"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/bmiddha/webhooks/issues"
},
"homepage": "https://github.com/bmiddha/webhooks#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/ioredis": "^4.14.9",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"ioredis": "^4.16.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"nyc": {
"include": "src",
"exclude": "**/*.spec.ts"
}
}