-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "@contentstack/webhook-listener",
"version": "1.0.4",
"description": "HTTP web server that listens to Contentstack webhooks. This is part of Contentstack DataSync",
"main": "./dist",
"types": "./typings",
"homepage": "https://www.contentstack.com/docs/guide/synchronization/contentstack-datasync",
"directories": {
"lib": "lib"
},
"keywords": [
"contentstack",
"webhook",
"listener",
"utility",
"datasync"
],
"scripts": {
"clean": "rimraf dist",
"build-ts": "npm run clean && tsc",
"watch-ts": "npm run clean && tsc -w",
"test": "jest --coverage",
"compile": "tsc",
"pretest": "npm run compile",
"start": "node example/"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/webhook-listener"
},
"bugs": {
"url": "https://github.com/contentstack/webhook-listener/issues",
"email": "support@contentstack.com"
},
"author": "Contentstack LLC <support@contentstack.com>",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.20.2",
"debug": "^4.3.4",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/basic-auth": "^1.1.2",
"@types/node": "^10.12.2",
"jest": "^29.0.3",
"rimraf": "^2.6.2",
"supertest": "^3.3.0",
"typescript": "^4.2.0",
"winston": "^3.1.0"
}
}