-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
106 lines (106 loc) · 2.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@zenvia/sdk",
"version": "2.4.4",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"author": "Wladimir Mangelardo <[email protected]> (https://github.com/wmangelardo)",
"contributors": [
"Rodrigo Kamada <[email protected]> (https://github.com/rodrigokamada)",
"Henrique Magarotto <[email protected]> (https://github.com/hmagarotto)",
"Rafael Souza <[email protected]> (https://github.com/rafael-org)",
"Jhonnanthn Balsas <[email protected]> (https://github.com/jhonnanthn)",
"Rafael Pimenta <[email protected]> (https://github.com/rafaelgpimenta)",
"Victor Park <[email protected]> (https://github.com/victorshp)",
"Marcelo Vedroni <[email protected]> (https://github.com/Marcelovqvd)"
],
"scripts": {
"test": "nyc --all mocha",
"test:coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls",
"build": "rm -rf ./dist/ && tsc",
"lint": "tslint --project tsconfig.json --exclude 'src/types/**/*' 'src/**/*.ts'",
"lint:fix": "tslint --fix --project tsconfig.json --exclude 'src/types/**/*' 'src/**/*.ts'",
"typedoc": "typedoc --disableOutputCheck --out docs src"
},
"repository": {
"type": "git",
"url": "https://github.com/zenvia/zenvia-sdk-node.git"
},
"bugs": {
"url": "https://github.com/zenvia/zenvia-sdk-node/issues"
},
"keywords": [
"API",
"E-Mail",
"Facebook",
"Instagram",
"Google Business Messages",
"RCS",
"SMS",
"Telegram",
"WhatsApp",
"Zenvia"
],
"dependencies": {
"express": "^4.17.1",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.64",
"@types/request-promise": "^4.1.46",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"mocha": "^9.1.3",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typedoc": "^0.23.6",
"typescript": "^4.0.3"
},
"mocha": {
"require": [
"test/ts-node-register",
"source-map-support/register",
"test/common.ts"
],
"check-leaks": true,
"recursive": true,
"spec": "test/**/*.spec.ts"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"src/index.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}