-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.56 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
60
61
62
63
{
"name": "mobizon-node",
"version": "0.5.5",
"description": "Biblioteca NodeJS para trabalhar com os serviços Mobizon API",
"readmeFilename": "README.md",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"keywords": [
"mobizon",
"sms",
"api",
"shortcode",
"url_shortener",
"gateway",
"messaging",
"A2P",
"es6"
],
"homepage": "https://mobizon.com.br",
"author": "Caio Agiani <[email protected]>",
"contributors": [
{
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://mobizon.com.br"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/caioagiani/mobizon-node"
},
"bugs": {
"url": "https://github.com/caioagiani/mobizon-node/issues"
},
"scripts": {
"lint": "eslint src --ext .js",
"build": "sucrase ./src -d ./dist --transforms imports",
"dev:start": "sucrase-node example.js",
"dev:test": "yarn lint && jest --setupFiles dotenv/config --forceExit --coverage",
"dev:test:clear": "jest --clearCache"
},
"dependencies": {
"axios": "^0.27.0",
"qs": "^6.9.6"
},
"devDependencies": {
"jest": "28",
"@sucrase/jest-plugin": "2.2.1",
"dotenv": "16.0.1",
"eslint": "8.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-import-helpers": "1.2.1",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.7.1",
"sucrase": "3.21.0"
},
"engines": {
"node": ">=10"
}
}