forked from tawn33y/whatsapp-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.19 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
{
"name": "whatsapp-cloud-api",
"version": "0.2.5",
"description": "Node.js library for creating bots and sending/receiving messages using the Whatsapp Cloud API",
"main": "dist/index.js",
"scripts": {
"start": "nodemon",
"build": "rm -rf dist && tsc",
"lint": "eslint --ext .ts ./",
"ts-check": "tsc --noEmit -p .",
"test": "npm run build && jest --testPathPattern=dist",
"pre-commit-message": "echo 'Please wait, running pre-commit checks...' && exit 0",
"pre-commit": "npm-run-all lint ts-check test",
"prepare": "[ -d './.husky' ] && husky install"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"pubsub-js": "^1.9.4",
"type-fest": "^2.16.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/pubsub-js": "^1.8.3",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tawn33y/whatsapp-cloud-api.git"
},
"keywords": [
"whatsapp",
"cloud",
"api",
"whatsapp-cloud",
"cloud-api",
"whatsapp-cloud-api",
"whatsapp-business",
"whatsapp-business-api",
"bot",
"whatsapp-bot",
"chatbot",
"bot-framework",
"nodejs",
"bot-api",
"whatsapp-api",
"business-api"
],
"author": "Tony <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tawn33y/whatsapp-cloud-api/issues"
},
"homepage": "https://github.com/tawn33y/whatsapp-cloud-api#readme",
"engines": {
"node": ">=12"
}
}