forked from GabrielBragaGit/WhatsApp-Nodejs-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "whatsapp",
"version": "0.0.7-Alpha",
"description": "SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"files": [
"build",
"src"
],
"type": "commonjs",
"engines": {
"node": ">=16.19.1"
},
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/WhatsApp.ts",
"prebuild": "run-s create-version-file",
"build": "rimraf ./build && tsc -p tsconfig.json && ./node_modules/.bin/babel build --out-dir build && rimraf ./build/__tests__/",
"check-changelog": "node ./scripts/check_changelog.mjs",
"check-copyright-headers": "node ./scripts/check_copyright_headers.mjs",
"create-version-file": "node ./scripts/create_version_file.mjs",
"test": "run-s build test:*",
"test:spelling": "cspell \"{README.md,.github/*.md,website/docs/**/*.md}\"",
"test:prettier": "run-s prettier-format",
"test:lint": "eslint .",
"test:jest": "jest",
"test:typecheck": "tsc --noEmit",
"prettier-format": "prettier . --write",
"prettier-watch": "run-script-os",
"prettier-watch:win32": "onchange \"./**/*.ts\" \"scripts/*.mjs\" -- prettier --write {{changed}}",
"prettier-watch:darwin:linux": "onchange './**/*.ts' 'scripts/*.mjs' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange './**/*.ts' 'scripts/*.mjs' -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabrielBragaGit/WhatsApp-Nodejs-SDK.git"
},
"keywords": [
"WhatsApp",
"SDK",
"Business",
"Platform",
"secure",
"messaging",
"NodeJS",
"Cloud API"
],
"author": "Rashed Talukder",
"license": "SEE LICENSE IN LICENSE FILE",
"bugs": {
"url": "https://github.com/GabrielBragaGit/WhatsApp-Nodejs-SDK/issues"
},
"homepage": "https://github.com/GabrielBragaGit/WhatsApp-Nodejs-SDK",
"dependencies": {
"@types/node": "~18.11.18"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-dynamic-import": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@jest/globals": "~29.5.0",
"@types/jest": "^29.5.0",
"@types/module-alias": "~2.0.1",
"@typescript-eslint/eslint-plugin": "~5.57.1",
"@typescript-eslint/parser": "~5.57.1",
"babel-jest": "^29.5.0",
"babel-plugin-add-module-exports": "^1.0.4",
"cspell": "^6.31.1",
"dotenv": "^16.0.3",
"eslint": "~8.37.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-jest": "~27.2.1",
"eslint-plugin-prettier": "~4.2.1",
"graceful-fs": "~4.2.10",
"isbinaryfile": "~5.0.0",
"jest": "~29.5.0",
"nock": "~13.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"run-script-os": "^1.1.6",
"ts-jest": "~29.1.0",
"ts-node": "~10.9.1",
"typescript": "~5.0.3"
}
}