-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "smsglobal-node-sdk",
"version": "1.0.0",
"description": "Node SDK to interact with SMSGlobal REST endpoints.",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive --timeout 5000 --reporter spec",
"start": "node src/index.js",
"build": "npm run test && npm run lint"
},
"keywords": [
"sdk",
"nodejs",
"SMS",
"API",
"REST",
"SMSGlobal",
"Messaging"
],
"author": "Mujtaba Shamas",
"license": "GPL-3.0",
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3",
"sinon": "^18.0.1"
},
"dependencies": {
"axios": "^1.7.7"
},
"repository": {
"type": "git",
"url": "https://github.com/mujtabashamas/smsglobal-node-sdk.git"
},
"bugs": {
"url": "https://github.com/mujtabashamas/smsglobal-node-sdk/issues"
},
"homepage": "https://github.com/mujtabashamas/smsglobal-node-sdk#readme",
"engines": {
"node": ">=18.0.0"
}
}