-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
{
"name": "sms-altiria-client",
"version": "1.0.3",
"description": "Client library to send SMS using Altiria Gateway",
"main": "src/altiria-client.js",
"files": [
"src/altiria-client.js",
"src/altiria-model-text-message.js",
"src/exception/"
],
"repository": {
"type": "git",
"url": "https://github.com/altiria/sms-nodejs-client.git"
},
"scripts": {
"test": "jest --verbose",
"isolated_suite_test": "jest -t 'SendSmsHttpTest' --verbose",
"isolated_test": "jest -t 'SendSmsHttpTest testOkMandatoryParams' --verbose"
},
"keywords": [
"nodejs",
"http-client",
"npm",
"sms-api",
"sms-messages",
"sms-notifications",
"sms-gateway",
"smsapi",
"altiria",
"envio-de-sms",
"envio-sms",
"sms-transaccional",
"sms-pasarela",
"sms-nodejs"
],
"author": "soporte@altiria.com",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.3.0",
"jest": "^27.4"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json",
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node"
}
}