forked from Secreto31126/whatsapp-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "whatsapp-api-js",
"version": "0.8.2",
"author": "Secreto31126",
"description": "A Whatsapp Official API framework for Node.js",
"license": "MIT",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --reporter min --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --check src",
"prettier:write": "prettier --write src",
"coverage": "nyc --reporter=text mocha --reporter min",
"types": "tsc",
"document": "jsdoc -c ./jsdoc.conf.json -R ./README.md && cp ./docs_statics/* ./docs/",
"clear": "rm -rf ./docs/ ./types/ ./coverage/ ./.nyc_output"
},
"keywords": [
"whatsapp",
"cloud",
"api",
"framework",
"whatsapp-cloud",
"cloud-api",
"whatsapp-cloud-api",
"whatsapp-business",
"whatsapp-business-api",
"bot",
"whatsapp-bot",
"chatbot",
"bot-framework",
"nodejs",
"deno",
"bun",
"bot-api",
"whatsapp-api",
"business-api"
],
"repository": {
"type": "git",
"url": "https://github.com/Secreto31126/whatsapp-api-js.git"
},
"devDependencies": {
"docdash": "^2.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"jsdoc": "^4.0.0",
"jsdoc-tsimport-plugin": "^1.0.5",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"rewire": "^6.0.0",
"sinon": "^14.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"undici": "^5.11.0"
}
}