-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "@kartikkhk/gatekeeper",
"version": "2.3.0",
"description": "gatekeeper leverages ngrok & node's events module to capture webhooks and helps in integrating assertions for your webhooks with your integration / e2e tests",
"main": "build/src/index.js",
"scripts": {
"prepare": "npx husky install",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"test": "npm run test:app && npm run test:e2e",
"test:app": "mocha $(find test -type f -name 'app*.test.js')",
"test:e2e": "mocha $(find test -type f -name 'e2e*.test.js')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kartik1998/gatekeeper.git"
},
"keywords": [
"webhooks",
"webhook",
"test",
"tests",
"ngrok",
"automation",
"mocha",
"chai"
],
"author": "Kartik",
"license": "MIT",
"bugs": {
"url": "https://github.com/kartik1998/gatekeeper/issues"
},
"homepage": "https://github.com/kartik1998/gatekeeper#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"axios": "^0.25.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"supertest": "^6.1.6"
},
"dependencies": {
"express": "^4.17.1",
"ngrok": "^4.2.2"
}
}