-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@cubetiq/verifyme",
"version": "0.1.5",
"description": "A simple way to send and verify verification code with SMS, Email, Telegram and etc.",
"main": "dist/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"dist": {
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CUBETIQ/verifyme-sdk-node.git"
},
"keywords": [
"verifyme"
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CUBETIQ/verifyme-sdk-node/issues"
},
"homepage": "https://github.com/CUBETIQ/verifyme-sdk-node#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.6.2"
}
}