-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "termii-nodejs-client",
"version": "0.4.0",
"description": "Nodejs SDK wrapper for Termii API written with Typescript support",
"author": "Emmanuel Raymond",
"module": "dist/termii.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/peoray/termii-nodejs-client.git"
},
"homepage": "https://github.com/peoray/termii-nodejs-client#readme",
"bugs": {
"url": "https://github.com/peoray/termii-nodejs-client/issues"
},
"readme": "README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"test": "jest --config jest.config.js --no-cache",
"prepare": "tsdx build",
"prepublishOnly": "pnpm test && pnpm build",
"preversion": "pnpm test && pnpm build"
},
"keywords": [
"termii",
"otp",
"sms",
"authentication",
"verification",
"telecom",
"voice",
"token",
"in-app verification",
"messaging"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.5"
}
}