-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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": "fbm-webhook",
"version": "1.0.4",
"description": "Facebook Messenger webhook middleware for Express.",
"keywords": [
"facebook",
"messenger",
"webhook"
],
"homepage": "https://github.com/risan/fbm-webhook",
"bugs": {
"url": "https://github.com/risan/fbm-webhook/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "[email protected]",
"url": "https://bagja.net"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/risan/fbm-webhook.git"
},
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test",
"test": "jest"
},
"dependencies": {
"body-parser": "1.x",
"express": "4.x",
"lodash.get": "4.x",
"lodash.has": "4.x"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"supertest": "^3.3.0"
},
"engines": {
"node": ">=8.0.0"
}
}