-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 861 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
{
"name": "@ynssenem/netgsm",
"version": "1.0.0",
"description": "A JavaScript library developed for NETGSM API services. It aims to simplify the execution of services like SMS OTP.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"examples:otp": "npx ts-node ./examples/otp.ts"
},
"keywords": [
"netgsm",
"sms",
"otp",
"javascript",
"typescript"
],
"author": "ynssenem",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ynssenem/netgsm.git"
},
"bugs": {
"url": "https://github.com/ynssenem/netgsm/issues"
},
"homepage": "https://github.com/ynssenem/netgsm#readme",
"devDependencies": {
"@types/node": "^20.2.5",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"xml-js": "^1.6.11"
}
}